From 3f321a5219e8d33d37e207fd8b55d90e9bd209f4 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Sat, 26 Oct 2019 21:10:38 -0400 Subject: [PATCH] Indicate plugin loads --- .../velocitypowered/proxy/plugin/VelocityPluginManager.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/plugin/VelocityPluginManager.java b/proxy/src/main/java/com/velocitypowered/proxy/plugin/VelocityPluginManager.java index ad7b53103..b6ce18016 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/plugin/VelocityPluginManager.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/plugin/VelocityPluginManager.java @@ -3,6 +3,7 @@ package com.velocitypowered.proxy.plugin; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkNotNull; +import com.google.common.base.Joiner; import com.velocitypowered.api.plugin.PluginContainer; import com.velocitypowered.api.plugin.PluginDescription; import com.velocitypowered.api.plugin.PluginManager; @@ -101,6 +102,8 @@ public class VelocityPluginManager implements PluginManager { continue; } + logger.info("Loaded plugin {} {} by {}", plugin.getId(), plugin.getVersion() + .orElse(""), Joiner.on(", ").join(plugin.getAuthors())); registerPlugin(pluginObject); } }