Exemplo n.º 1
0
 public static string FormatDebug(DebugLogEvent e, string dateFormat)
 {
     return(FormatMessage(e, _DebugFormat, dateFormat));
 }
Exemplo n.º 2
0
        public static void PrintDebug(DebugLogEvent e, string dateFormat = DefaultDateFormat)
        {
            var msg = LineLogFormatter.FormatDebug(e, dateFormat);

            WriteLine(msg, LogLevel.Debug);
        }