Init: Increase severity log level to error on exceptions

Change-Id: Ie202260bd5c88cc95ddef0f07d6d189d0765e5c4
This commit is contained in:
David Ostrovsky
2019-10-31 18:56:49 +01:00
committed by David Pursehouse
parent 4c1a7f3c36
commit 8f7c78e112

View File

@@ -148,7 +148,7 @@ public class BaseInit extends SiteProgram {
} catch (OrmException e) {
String msg = "Couldn't upgrade schema. Expected if slave and read-only database";
System.err.println(msg);
log.warn(msg, e);
log.error(msg, e);
}
init.initializer.postRun(sysInjector);