Skip to content

DebugOuputLogger

Aghyad khlefawi edited this page Apr 21, 2017 · 2 revisions

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
Clone this wiki locally