Beispiel #1
0
 public void LogDebug(string message)
 {
     LeveledOutbox.Add(Tuple.Create(message, Level.Debug));
 }
Beispiel #2
0
 public void LogFatal(string message, Exception exception)
 {
     LeveledOutbox.Add(Tuple.Create(message, Level.Fatal));
 }
Beispiel #3
0
 public void LogWarning(string message)
 {
     LeveledOutbox.Add(Tuple.Create(message, Level.Warning));
 }
Beispiel #4
0
 public void LogError(string message, Exception exception)
 {
     LeveledOutbox.Add(Tuple.Create(message, Level.Error));
 }
Beispiel #5
0
 public void LogInformation(string message)
 {
     LeveledOutbox.Add(Tuple.Create(message, Level.Information));
 }