Remove annoying log messages

This commit is contained in:
Jordan Brown
2020-05-25 00:36:35 -04:00
parent 0bbd447c40
commit d2ef39e4c9
2 changed files with 1 additions and 4 deletions
@@ -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<MonitorActivationReason, Task>
@@ -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);
}