ChessServer.LogHelper.DebugLog C# (CSharp) Method

DebugLog() public static method

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