Availability Changes

- changed Waiting for Publication to more specific Statuses.
This commit is contained in:
Brett Hewitson 2022-06-22 21:52:50 +10:00
parent a14f91c412
commit 09659d9ae2
20 changed files with 600 additions and 410 deletions

View file

@ -683,12 +683,12 @@ namespace ServerManagerTool
if (Config.Default.LoggingEnabled)
{
while (!LogManager.IsLoggingEnabled())
LogManager.EnableLogging();
LogManager.ResumeLogging();
}
else
{
while (LogManager.IsLoggingEnabled())
LogManager.DisableLogging();
LogManager.SuspendLogging();
}
Debug.WriteLine($"Logging Enabled: {LogManager.IsLoggingEnabled()}");