ChessServer.LogHelper.LogError C# (CSharp) Method

LogError() public static method

public static LogError ( string msg ) : void
msg string
return void
        public static void LogError(string msg)
        {
            Console.ForegroundColor = ConsoleColor.Red;
            Console.Write("[" + DateTime.Now + "] " + msg);
        }
    }