public static string FormatDebug(DebugLogEvent e, string dateFormat) { return(FormatMessage(e, _DebugFormat, dateFormat)); }
public static void PrintDebug(DebugLogEvent e, string dateFormat = DefaultDateFormat) { var msg = LineLogFormatter.FormatDebug(e, dateFormat); WriteLine(msg, LogLevel.Debug); }