Example #1
0
 private void ProcessOnErrorDataReceived(object sender, string e)
 {
     if (!string.IsNullOrEmpty(e))
     {
         OnLogEntryReceived(ChefLogEntry.CriticalError(e));
     }
 }
Example #2
0
 private void ProcessOnErrorDataReceived(object sender, string e)
 {
     if (!string.IsNullOrEmpty(e))
     {
         Logger.Debug($"Chef error: {e}");
         OnLogEntryReceived(ChefLogEntry.CriticalError(e));
     }
 }