From 70473c44f31ea9ecbc836c177dd310cf580b9626 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 11 Aug 2020 18:36:02 +0000 Subject: [PATCH] --- docs/8.0/ayanova/docs/index.md | 2 +- server/AyaNova/Startup.cs | 10 ++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/docs/8.0/ayanova/docs/index.md b/docs/8.0/ayanova/docs/index.md index c43be0c0..5a632661 100644 --- a/docs/8.0/ayanova/docs/index.md +++ b/docs/8.0/ayanova/docs/index.md @@ -1,7 +1,7 @@ # WELCOME TO AYANOVA ![AyaNovaIcon](img/ayanovaicon60x60.png) ## About this documentation -Last updated: 2020-March-30 +Last updated: 2020-August-11 This manual has the following sections: diff --git a/server/AyaNova/Startup.cs b/server/AyaNova/Startup.cs index cc410fb1..596b720b 100644 --- a/server/AyaNova/Startup.cs +++ b/server/AyaNova/Startup.cs @@ -619,8 +619,6 @@ namespace AyaNova _newLog.LogWarning($"### AYANOVA_SET_SUPERUSER_PW HAS BEEN USED TO RESET SUPER USER PASSWORD YOU CAN REMOVE THIS SETTING NOW ###"); } - - //Boot lock for generator ServerGlobalOpsSettingsCache.BOOTING = false; @@ -628,15 +626,11 @@ namespace AyaNova _newLog.LogDebug("Setting server state open"); apiServerState.SetOpen(); - //final startup log _newLog.LogInformation("Boot complete - server open"); -#if (DEBUG) - //Show in dev console that server is open (so I don't need to look in the log to see it) - System.Diagnostics.Debugger.Log(1, "BOOT", "Startup.cs -> BOOT: COMPLETED - SERVER IS NOW OPEN"); - -#endif + //flag in console that server is open + System.Diagnostics.Debugger.Log(1, "BOOT", "BOOT: COMPLETED - SERVER IS NOW OPEN"); }