cleanup footer on login page

This commit is contained in:
2020-03-26 18:10:12 +00:00
parent d20542f375
commit 3b094244c6

View File

@@ -436,7 +436,7 @@ namespace AyaNova.Core
{
log.LogInformation("Server is in test mode, fetching trial key");
sUrl = $"{LICENSE_SERVER_URL}rvf/{TEST_TRIAL_KEY_DBID.ToString()}";
// log.LogInformation(sUrl);
// log.LogInformation(sUrl);
}
//##########################################################################################################
@@ -503,7 +503,10 @@ namespace AyaNova.Core
{
var msg = "E1020 - License key not found in database, running in unlicensed mode";
apiServerState.SetSystemLock(msg);
log.LogWarning(msg);
if (ServerBootConfig.AYANOVA_SERVER_TEST_MODE)
log.LogDebug(msg);
else
log.LogWarning(msg);
return;
}