Exemple #1
0
 private void OnLogNotification(LogNotificationLevel level, string message, Exception exception)
 {
     this.Level     = level;
     this.Message   = message;
     this.Exception = exception;
 }
Exemple #2
0
 public LogWatcher LevelIs(LogNotificationLevel level)
 {
     this.Level.Should().Be(level, "Level should be correct");
     return(this);
 }