From c6913f3fa2bd9b51db8a4bfb596ae9b0c08e30bb Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 12 May 2020 13:23:40 -0400 Subject: [PATCH] Add additional logging --- src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs b/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs index d289185114..eb6c2c1095 100644 --- a/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs +++ b/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs @@ -574,6 +574,8 @@ namespace Tgstation.Server.Host.Components.Watchdog await StopMonitor().ConfigureAwait(false); var reattachInformation = CreateReattachInformation(); + + Logger.LogDebug("Saving reattach information..."); await reattachInfoHandler.Save(reattachInformation, cancellationToken).ConfigureAwait(false); }