diff --git a/src/Tgstation.Server.Host/Server.cs b/src/Tgstation.Server.Host/Server.cs index 35af32a33d..5a8fd3ee84 100644 --- a/src/Tgstation.Server.Host/Server.cs +++ b/src/Tgstation.Server.Host/Server.cs @@ -125,7 +125,7 @@ namespace Tgstation.Server.Host if (b.FullPath == updatePath && File.Exists(b.FullPath)) { if (logger != null) - logger.LogInformation("Host watchdog appears to be requesting process termination!"); + logger.LogInformation("Host watchdog appears to be requesting server termination!"); cancellationTokenSource.Cancel(); } }; @@ -136,7 +136,7 @@ namespace Tgstation.Server.Host try { logger = host.Services.GetRequiredService>(); - using (cancellationToken.Register(() => logger.LogInformation("Process termination requested!"))) + using (cancellationToken.Register(() => logger.LogInformation("Server termination requested!"))) { var generalConfigurationOptions = host.Services.GetRequiredService>(); generalConfiguration = generalConfigurationOptions.Value;