Tweak around Verbosity

This commit is contained in:
2020-03-14 11:16:30 +00:00
parent efe6443bb1
commit 2a39747e4d

View File

@@ -58,14 +58,13 @@ namespace Cachet_Monitor
try try
{ {
await DoMonitorCheck(Cachet, monitor).ConfigureAwait(false); await DoMonitorCheck(Cachet, monitor).ConfigureAwait(false);
Log.Verbose("MainAsync", $"Ran Monitor Check for {monitor.Name}");
} }
catch (Exception ex) catch (Exception ex)
{ {
Log.Warning("MainAsync", $"{monitor.Name} failed with {ex.Message}", ex); Log.Warning("MainAsync", $"{monitor.Name} failed with {ex.Message}", ex);
} }
Log.Verbose("MainAsync", $"Halting {monitor.Name} check for {monitor.Interval * 1000}ms"); Log.Debug("MainAsync", $"Halting {monitor.Name} check for {monitor.Interval * 1000}ms");
await Task.Delay(monitor.Interval * 1000); await Task.Delay(monitor.Interval * 1000);
} }
}).Start(); }).Start();
@@ -91,7 +90,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.Operational, Status = ComponentStatus.Operational,
}); });
Log.Verbose("PortMonitorCheck", "Sent to Cachet successfully"); Log.Debug("PortMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex) catch (Exception ex)
{ {
@@ -108,7 +107,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.MajorOutage, Status = ComponentStatus.MajorOutage,
}); });
Log.Verbose("PortMonitorCheck", "Sent to Cachet successfully"); Log.Debug("PortMonitorCheck", "Sent to Cachet successfully");
} }
catch(Exception ex2) catch(Exception ex2)
{ {
@@ -135,7 +134,7 @@ namespace Cachet_Monitor
{ {
Value = (int)reply.RoundtripTime Value = (int)reply.RoundtripTime
}); });
Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); Log.Debug("IPMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex) catch (Exception ex)
{ {
@@ -150,7 +149,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.Operational, Status = ComponentStatus.Operational,
}); });
Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); Log.Debug("IPMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex) catch (Exception ex)
{ {
@@ -166,7 +165,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.PerformanceIssues, Status = ComponentStatus.PerformanceIssues,
}); });
Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); Log.Debug("IPMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex) catch (Exception ex)
{ {
@@ -184,7 +183,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.PartialOutage, Status = ComponentStatus.PartialOutage,
}); });
Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); Log.Debug("IPMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex) catch (Exception ex)
{ {
@@ -199,7 +198,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.MajorOutage, Status = ComponentStatus.MajorOutage,
}); });
Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); Log.Debug("IPMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex) catch (Exception ex)
{ {
@@ -231,7 +230,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.Operational, Status = ComponentStatus.Operational,
}); });
Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); Log.Debug("WebMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex) catch (Exception ex)
{ {
@@ -246,7 +245,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.PartialOutage, Status = ComponentStatus.PartialOutage,
}); });
Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); Log.Debug("WebMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex) catch (Exception ex)
{ {
@@ -274,7 +273,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.Operational, Status = ComponentStatus.Operational,
}); });
Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); Log.Debug("WebMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex2) catch (Exception ex2)
{ {
@@ -293,7 +292,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.PerformanceIssues, Status = ComponentStatus.PerformanceIssues,
}); });
Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); Log.Debug("WebMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex2) catch (Exception ex2)
{ {
@@ -308,7 +307,7 @@ namespace Cachet_Monitor
{ {
Status = ComponentStatus.MajorOutage, Status = ComponentStatus.MajorOutage,
}); });
Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); Log.Debug("WebMonitorCheck", "Sent to Cachet successfully");
} }
catch (Exception ex2) catch (Exception ex2)
{ {
@@ -326,7 +325,7 @@ namespace Cachet_Monitor
break; break;
} }
Log.Verbose("DoMonitorCheck", $"Ran check on \"{monitor.Name}\" Status: {componentStatus}"); Log.Verbose("DoMonitorCheck", $"Ran check on \"{monitor.Name}\" Status: {componentStatus.ToString()}");
} }
} }
} }