3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-17 05:20:14 +01:00

Include version in boot message

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-09-04 01:39:51 -04:00
Ursprung 5e0b13edcd
Commit 5a424f5cbb

Datei anzeigen

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