-
Notifications
You must be signed in to change notification settings - Fork 2
FileLogger
Aghyad khlefawi edited this page Apr 21, 2017
·
2 revisions
An ILogger that writes to a file.
C# Example:
FileLogger logger = new FileLogger();
logger.Initialize(LogRecordTypes.Debug,"log.txt");
logger.Log("Coddee","A simple log",LogRecordTypes.Information);
//Writes to the file
//[4/21/2017 4:36:55 PM] [Information] [Coddee] A simple log