BiliRanking.Log.Warn C# (CSharp) Méthode

Warn() public static méthode

public static Warn ( string s ) : void
s string
Résultat void
        public static void Warn(string s)
        {
            Console.ForegroundColor = ConsoleColor.Yellow;
            Console.WriteLine("[WARN] " + DateTime.Now.ToString("HH:mm:ss") + " " + s);
            Console.ForegroundColor = ConsoleColor.Gray;
        }