public static void LogDebug(string msg) { WriteAtomic(() => ColoredConsole.WriteLine(ColorForDebug, msg)); }
public static void LogDebug(string formatString, params object[] args) { WriteAtomic(() => ColoredConsole.WriteLine(ColorForDebug, formatString, args)); }
public static void LogInformation(string msg) { WriteAtomic(() => ColoredConsole.WriteLine(ColorForInformation, msg)); }