Exemplo n.º 1
0
 public static void LogDebug(string msg)
 {
     WriteAtomic(() => ColoredConsole.WriteLine(ColorForDebug, msg));
 }
Exemplo n.º 2
0
 public static void LogDebug(string formatString, params object[] args)
 {
     WriteAtomic(() => ColoredConsole.WriteLine(ColorForDebug, formatString, args));
 }
Exemplo n.º 3
0
 public static void LogInformation(string msg)
 {
     WriteAtomic(() => ColoredConsole.WriteLine(ColorForInformation, msg));
 }