Created
August 30, 2016 10:15
-
-
Save MechMK1/c62f872b4dfd8c291f057c4b0d164e89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void WriteLog(string message) | |
{ | |
WriteLog(message, Logger.Defaults.Severity, Logger.Defaults.Encoding, Logger.Defaults.Color); | |
} | |
public void WriteLog(string message, Severity severity) | |
{ | |
WriteLog(message, severity, Logger.Defaults.Encoding, Logger.Defaults.Color); | |
} | |
// And so on and so forth | |
public void WriteLog(string message, Severity severity, Encoding encoding, Color color) | |
{ | |
/*Write the actual log*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment