Remove debugging from command loader

This commit is contained in:
Telesphoreo 2022-04-01 23:21:37 -05:00
parent 0f898380db
commit 787458f1df
1 changed files with 0 additions and 5 deletions

View File

@ -24,17 +24,14 @@ public class CommandHandler extends PlexBase
if (clazz.isAnnotationPresent(System.class))
{
System annotation = clazz.getDeclaredAnnotation(System.class);
PlexLog.debug(clazz.getName() + " has annotations");
if (annotation.value().equalsIgnoreCase(plugin.getSystem().toLowerCase()))
{
commands.add(clazz.getConstructor().newInstance());
PlexLog.debug("Adding " + clazz.getName() + " as a rank command");
}
if (plugin.config.getBoolean("debug") && annotation.debug())
{
commands.add(clazz.getConstructor().newInstance());
PlexLog.debug("Adding " + clazz.getName() + " as a debug command");
}
}
else
@ -47,8 +44,6 @@ public class CommandHandler extends PlexBase
PlexLog.error("Failed to register " + clazz.getSimpleName() + " as a command!");
}
});
PlexLog.debug("Test");
PlexLog.log(String.format("Registered %s commands from %s classes!", commands.size(), commandSet.size()));
}
}