namespace RoBot.Start.LogConfig { public class Logs { public static void Write(string message, bool warning = false) { if (warning) Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine($"[{DateTime.Now:yyyy-MM-dd HH:mm:ss}] - {message}"); if (warning) Console.ResetColor(); } } }