示例#1
0
文件: Log.cs 项目: skaveesh/mediocre
        public static void Dbg(FormattableString msg)
        {
            if (!Verbose)
            {
                return;
            }

            using (ConsoleWith.FG(ConsoleColor.DarkGray))
                Console.WriteLine(msg);
        }
示例#2
0
文件: Log.cs 项目: skaveesh/mediocre
 public static void Err(FormattableString msg)
 {
     using (ConsoleWith.FG(ConsoleColor.DarkRed))
         Console.WriteLine(msg);
 }