IronWebScraper - The C# Web Scraping Library
WebScraperLogLevel Enumeration |
Level of WebScraper logging to the Console.
Because this Enum is a Flag type options can be combined using a pipe: e.g. LogLevel.Critical | LogLevel.ScrapedData
Namespace: IronWebScraper
Assembly: IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)


Member name | Value | Description | |
---|---|---|---|
None | 0 | No Logs | |
Critical | 1 | Logs critical events such as permanently irretrievable page failures and system information. | |
ScrapedData | 2 |
Logs data which has been extracted, in a JSON format.
If using YieldUnique, only new records will be logged. Will also log File downloads and Images download | |
Http | 4 |
Logs HTTP request success and failures
Verbose. Useful for advanced debugging. | |
Decision | 8 |
Logs about decisions made by the crawler.
Verbose. Useful for advanced debugging. | |
All | 15 | All events are logged to the console. Extremely verbose; |
