diff --git a/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs b/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs index 543800cc5d..13c96f350a 100644 --- a/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs +++ b/src/Tgstation.Server.Host/Components/Watchdog/BasicWatchdog.cs @@ -87,8 +87,6 @@ namespace Tgstation.Server.Host.Components.Watchdog if (Server == null) return null; - Logger.LogDebug("Server compile job ID is {0}", Server.Dmb.CompileJob.Id); - monitorState.ActiveServer = Server; return new Dictionary diff --git a/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs b/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs index 5d9311e8de..74b3e06371 100644 --- a/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs +++ b/src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs @@ -664,8 +664,7 @@ namespace Tgstation.Server.Host.Components.Watchdog } } - // full reboot required - Logger.LogDebug("Next monitor action is to {0}", monitorState.NextAction); + Logger.LogTrace("Next monitor action is to {0}", monitorState.NextAction); if (monitorState.NextAction == MonitorAction.Restart) monitorState = await MonitorRestart(cancellationToken).ConfigureAwait(false); }