summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/App.java
diff options
context:
space:
mode:
Diffstat (limited to 'dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/App.java')
-rw-r--r--dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/App.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/App.java b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/App.java
index b63c0fa0..bb48207f 100644
--- a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/App.java
+++ b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/App.java
@@ -54,10 +54,6 @@ public class App {
Configurator.initialize(new DefaultConfiguration());
}
- AppUtil.logHeader(LOGGER, App.NAME, App.class.getPackage().getImplementationVersion());
- AppUtil.logProperty(LOGGER, "rpc.version", Long.toString(Version.VERSION));
- AppUtil.logProperty(LOGGER, "server.features", SupportedFeatures.getFeatureString());
-
// get Configuration
try {
LOGGER.info("Loading configuration");
@@ -67,6 +63,10 @@ public class App {
System.exit(1);
}
+ AppUtil.logHeader(LOGGER, App.NAME, App.class.getPackage().getImplementationVersion());
+ AppUtil.logProperty(LOGGER, "rpc.version", Long.toString(Version.VERSION));
+ AppUtil.logProperty(LOGGER, "server.features", SupportedFeatures.getFeatureString());
+
// Update database schema if applicable
try {
Updater.updateDatabase();