Log startup time as info instead of fine.

This commit is contained in:
Major-
2015-08-30 18:38:42 +01:00
parent e3f10e200d
commit ca36264b35
+1 -1
View File
@@ -63,7 +63,7 @@ public final class Server {
System.exit(0);
}
logger.fine("Starting apollo took " + stopwatch.elapsed(TimeUnit.MILLISECONDS) + " ms.");
logger.info("Starting apollo took " + stopwatch.elapsed(TimeUnit.MILLISECONDS) + " ms.");
}
/**