From 2a39747e4d30590c35e83d81ec1940e46ede2840 Mon Sep 17 00:00:00 2001 From: exsersewo Date: Sat, 14 Mar 2020 11:16:30 +0000 Subject: [PATCH] Tweak around Verbosity --- Cachet-Monitor/Program.cs | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/Cachet-Monitor/Program.cs b/Cachet-Monitor/Program.cs index a2ffcc0..f52de2e 100644 --- a/Cachet-Monitor/Program.cs +++ b/Cachet-Monitor/Program.cs @@ -58,14 +58,13 @@ namespace Cachet_Monitor try { await DoMonitorCheck(Cachet, monitor).ConfigureAwait(false); - Log.Verbose("MainAsync", $"Ran Monitor Check for {monitor.Name}"); } catch (Exception 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); } }).Start(); @@ -91,7 +90,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.Operational, }); - Log.Verbose("PortMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("PortMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex) { @@ -108,7 +107,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.MajorOutage, }); - Log.Verbose("PortMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("PortMonitorCheck", "Sent to Cachet successfully"); } catch(Exception ex2) { @@ -135,7 +134,7 @@ namespace Cachet_Monitor { Value = (int)reply.RoundtripTime }); - Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("IPMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex) { @@ -150,7 +149,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.Operational, }); - Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("IPMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex) { @@ -166,7 +165,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.PerformanceIssues, }); - Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("IPMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex) { @@ -184,7 +183,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.PartialOutage, }); - Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("IPMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex) { @@ -199,7 +198,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.MajorOutage, }); - Log.Verbose("IPMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("IPMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex) { @@ -231,7 +230,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.Operational, }); - Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("WebMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex) { @@ -246,7 +245,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.PartialOutage, }); - Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("WebMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex) { @@ -274,7 +273,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.Operational, }); - Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("WebMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex2) { @@ -293,7 +292,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.PerformanceIssues, }); - Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("WebMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex2) { @@ -308,7 +307,7 @@ namespace Cachet_Monitor { Status = ComponentStatus.MajorOutage, }); - Log.Verbose("WebMonitorCheck", "Sent to Cachet successfully"); + Log.Debug("WebMonitorCheck", "Sent to Cachet successfully"); } catch (Exception ex2) { @@ -326,7 +325,7 @@ namespace Cachet_Monitor break; } - Log.Verbose("DoMonitorCheck", $"Ran check on \"{monitor.Name}\" Status: {componentStatus}"); + Log.Verbose("DoMonitorCheck", $"Ran check on \"{monitor.Name}\" Status: {componentStatus.ToString()}"); } } } \ No newline at end of file