private void ScraperOnScrapeEnded(object sender, ScrapeEndedEventArgs args)
 {
     Test.Text = Test.Text.Insert(0, string.Format("Scrape Ended: {0} (type: {1})\n", args.Ended, args.Type));
     UpdateStatus(string.Format("Finished {0} Scrape", args.Type));
 }
 private void ScraperOnScrapeEnded(object sender, ScrapeEndedEventArgs args)
 {
     _scrapeHub.Clients.Group("doScrape").doMessage(string.Format("Scrape Ended: {0} (type: {1})", args.Ended, args.Type));
    // _log.Info("Scrape Ended: {0} (type: {1})<br/>", args.Ended, args.Type);
 }