DebugOuputLogger - Aghyad-Khlefawi/Coddee GitHub Wiki

An ILogger that writes to the debug output.

C# Example:

ILogger logger = new DebugOuputLogger();
logger.Initialize(LogRecordTypes.Debug);
logger.Log("Coddee","A simple log",LogRecordTypes.Information);

//Outputs to the debug window
//[4/21/2017 4:36:55 PM]  [Information]  [Coddee]  A simple log