1
0
mirror of https://github.com/GeyserMC/Floodgate.git synced 2025-12-19 14:59:20 +00:00

Removed config holder and changed a few things

This commit is contained in:
Tim203
2022-07-03 22:03:52 +02:00
parent 69aacfa91b
commit 1815613be6
18 changed files with 99 additions and 232 deletions

View File

@@ -80,18 +80,7 @@ public interface FloodgateLogger {
void trace(String message, Object... args);
/**
* Enables debug mode for the Floodgate logger.
*/
void enableDebug();
/**
* Disables debug mode for the Floodgate logger. Debug messages can still be sent after running
* this method, but they will be hidden from the console.
*/
void disableDebug();
/**
* Returns if debugging is enabled
* Returns true if debugging is enabled
*/
boolean isDebug();
}