From 89a5081addce8215d606491b184cccedfa3a562d Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 17 Dec 2018 23:45:24 +0000 Subject: [PATCH] --- server/AyaNova/Startup.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/AyaNova/Startup.cs b/server/AyaNova/Startup.cs index 2ad8611b..b7703725 100644 --- a/server/AyaNova/Startup.cs +++ b/server/AyaNova/Startup.cs @@ -380,7 +380,7 @@ namespace AyaNova // ******************** TESTING WIPE DB ***************************** // //Set this to true to wipe the db and reinstall a trial license and re-seed the data - var TESTING_REFRESH_DB = true;//############################################################################################# + var TESTING_REFRESH_DB = false;//############################################################################################# #if (DEBUG) //TESTING @@ -443,6 +443,10 @@ namespace AyaNova } }); + //Log the license info so it's on the record + _log.LogInformation($"BOOT: License -\r\n=-=-=-=-=-=-=-=-=-=-\r\n{AyaNova.Core.License.LicenseInfo}=-=-=-=-=-=-=-=-=-=-" ); + + //Open up the server for visitors apiServerState.SetOpen();