BiliRanking.Core.Log.Debug C# (CSharp) Method

Debug() public static method

public static Debug ( string s ) : void
s string
return void
        public static void Debug(string s)
        {
            #if DEBUG
            Console.ForegroundColor = ConsoleColor.Cyan;
            Console.WriteLine("[DEBU] " + DateTime.Now.ToString("HH:mm:ss") + " " + s);
            Console.ForegroundColor = ConsoleColor.Gray;
            #endif
        }