Skip to content

Instantly share code, notes, and snippets.

@MechMK1
Created August 30, 2016 10:26
Show Gist options
  • Save MechMK1/a076bc78a693ac475c7b256bbd9ea580 to your computer and use it in GitHub Desktop.
Save MechMK1/a076bc78a693ac475c7b256bbd9ea580 to your computer and use it in GitHub Desktop.
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