Created
August 30, 2016 10:26
-
-
Save MechMK1/a076bc78a693ac475c7b256bbd9ea580 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, | |
Severity severity = Logger.Defaults.Severity, | |
Encoding = Logger.Defaults.Encoding, | |
Color = Logger.Defaults.Color) | |
{ | |
/*Write your log here*/ | |
} | |
public void Main() | |
{ | |
WriteLog("I am a debug message", Severity = Severity.Debug); | |
WriteLog("This message is blue and actually Shift-JIS", Color = Color.Blue, Encoding = Encoding.ShiftJIS); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment