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 
## 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");
}