Include version in boot message

This commit is contained in:
Andrew Steinborn
2018-09-04 01:39:51 -04:00
parent 5e0b13edcd
commit 5a424f5cbb

View File

@@ -19,7 +19,7 @@ public class Velocity {
public static void main(String... args) {
startTime = System.currentTimeMillis();
logger.info("Booting up Velocity...");
logger.info("Booting up Velocity {}...", Velocity.class.getPackage().getImplementationVersion());
VelocityServer server = new VelocityServer();
server.start();