ChessServer.LogHelper.Log C# (CSharp) Method

Log() public static method

public static Log ( string msg ) : void
msg string
return void
        public static void Log(string msg)
        {
            Console.ForegroundColor = ConsoleColor.Green;
            Console.WriteLine("[" + DateTime.Now + "] " + msg);
        }