Added plugin loading log entry
This commit is contained in:
parent
cc2e721ffc
commit
397f25aa24
@ -190,6 +190,8 @@ public final class CraftServer implements Server {
|
|||||||
Plugin[] plugins = pluginManager.loadPlugins(pluginFolder);
|
Plugin[] plugins = pluginManager.loadPlugins(pluginFolder);
|
||||||
for (Plugin plugin : plugins) {
|
for (Plugin plugin : plugins) {
|
||||||
try {
|
try {
|
||||||
|
String message = String.format("Loading %s", plugin.getDescription().getFullName());
|
||||||
|
plugin.getLogger().info(message);
|
||||||
plugin.onLoad();
|
plugin.onLoad();
|
||||||
} catch (Throwable ex) {
|
} catch (Throwable ex) {
|
||||||
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " initializing " + plugin.getDescription().getFullName() + " (Is it up to date?)", ex);
|
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " initializing " + plugin.getDescription().getFullName() + " (Is it up to date?)", ex);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user