Logging for plugin gathering

Moved spammy API stuff to a separate logger
This commit is contained in:
Nicholas Ignoffo 2018-02-17 09:48:17 -08:00
parent f49e661eb6
commit f89b5a005a
7 changed files with 50 additions and 16 deletions
src/main/java/WayofTime/bloodmagic/util

View file

@ -26,6 +26,12 @@ public enum BMLog {
return ConfigHandler.general.enableAPILogging;
}
},
API_VERBOSE() {
@Override
boolean enabled() {
return ConfigHandler.general.enableVerboseAPILogging;
}
},
;
private final Logger logger;