You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
365 B
C#
14 lines
365 B
C#
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();
|
|
}
|
|
}
|
|
}
|