ChessServer.LogHelper.LogError C# (CSharp) Méthode

LogError() public static méthode

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