cleanup footer on login page

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

View File

@@ -503,6 +503,9 @@ namespace AyaNova.Core
{ {
var msg = "E1020 - License key not found in database, running in unlicensed mode"; var msg = "E1020 - License key not found in database, running in unlicensed mode";
apiServerState.SetSystemLock(msg); apiServerState.SetSystemLock(msg);
if (ServerBootConfig.AYANOVA_SERVER_TEST_MODE)
log.LogDebug(msg);
else
log.LogWarning(msg); log.LogWarning(msg);
return; return;
} }