From 5a424f5cbba30519990b7d3453446102c4cd9a4b Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Tue, 4 Sep 2018 01:39:51 -0400 Subject: [PATCH] Include version in boot message --- proxy/src/main/java/com/velocitypowered/proxy/Velocity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/Velocity.java b/proxy/src/main/java/com/velocitypowered/proxy/Velocity.java index 9c1ee307f..c628775c4 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/Velocity.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/Velocity.java @@ -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();