Skip to content

kbrashears5/net-standard-logger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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