SimpleLogger is a synchronous logging utility built in .NET Framework 4.5.2
It features an SDK for connecting to your own output origin.
Namespace containing standardized logging utility interfaces.
The verboseness of the logging statements, IE should you include the system information, or call stack.
The criticality of the log statement, IE error or debug mode.
Provides the method Log(Severity, Granularity, string) for standardized implementation.
Provides the method Write(string) for adapting to various output streams.
Namespace containing concrete implementation of logging utiltiy.
Writes log messages to the system console.
Writes log messages to a memory mapped file.
Provides a factory for attaching an IWriteAdapter to a simple concrete logger.
Simple concrete logging utility.