Remove debug

This commit is contained in:
Telesphoreo 2022-04-02 00:36:04 -05:00
parent 4d0cf96b97
commit 82343815dd
1 changed files with 0 additions and 2 deletions

View File

@ -24,11 +24,9 @@ public class ListenerHandler extends PlexBase
if (clazz.isAnnotationPresent(Toggleable.class))
{
Toggleable annotation = clazz.getDeclaredAnnotation(Toggleable.class);
PlexLog.debug(clazz.getName() + " has annotations");
if (plugin.config.get(annotation.value()) != null && plugin.config.getBoolean(annotation.value()))
{
listeners.add(clazz.getConstructor().newInstance());
PlexLog.debug("Registering " + clazz.getName() + " as a listener");
}
}
else