diff --git a/src/Tgstation.Server.Host/Core/SetupWizard.cs b/src/Tgstation.Server.Host/Core/SetupWizard.cs index 74556b3663..76d727f07e 100644 --- a/src/Tgstation.Server.Host/Core/SetupWizard.cs +++ b/src/Tgstation.Server.Host/Core/SetupWizard.cs @@ -471,6 +471,9 @@ namespace Tgstation.Server.Host.Core return false; } + //flush the logs to prevent console conflicts + await Task.Delay(TimeSpan.FromSeconds(1), cancellationToken).ConfigureAwait(false); + await RunWizard(userConfigFileName, cancellationToken).ConfigureAwait(false); return true; }