public void Log(LogEntryLevel logEntryLevel, Exception exception, LogEntryContextDictionary logEntryContext)
 {
 }
 public void Log(LogEntryLevel logEntryLevel, Exception exception, LogEntryContextDictionary logEntryContext)
 {
     Console.WriteLine(Resources.LogEntryFormat, logEntryLevel, DateTime.Now, string.Format(CultureInfo.CurrentCulture, "[{0}]: {1}", logEntryContext, exception));
 }
 public void Log(LogEntryLevel logEntryLevel, string message, Exception exception, LogEntryContextDictionary logEntryContext)
 {
 }
 public void Log(LogEntryLevel logEntryLevel, string message, LogEntryContextDictionary logEntryContext)
 {
     Console.WriteLine(Resources.LogEntryFormat, logEntryLevel, DateTime.Now, string.Format(CultureInfo.CurrentCulture, "{0} [{1}]", message, logEntryContext));
 }