Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.47 KB

README.md

File metadata and controls

49 lines (41 loc) · 1.47 KB

Net Standard Logger

Logger implementation for Net Standard libraries

Build Status Tests Code Coverage

nuget nuget

Loggers


Console Logger

Use the ConsoleLogger to log to the console

Event Viewer Logger

Use the EventViewerLogger to log to the Windows Event Viewer

File Logger

Use the FileLogger to log to a file

Log Levels


LogLevel.Debug

Most verbose logging

Includes all Trace, Information, Warning, Error logs

LogLevel.Trace

Mildly verbose logging

Includes all Information, Warning, Error logs

LogLevel.Information

Information logging

Includes all Warning, Error logs

LogLevel.Warning

Warning logs

Includes all Error logs

LogLevel.Error

Errors only