Add verbose message logger
This commit is contained in:
15
src/main/java/wtf/beatrice/hidekobot/Configuration.java
Normal file
15
src/main/java/wtf/beatrice/hidekobot/Configuration.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package wtf.beatrice.hidekobot;
|
||||
|
||||
public class Configuration
|
||||
{
|
||||
|
||||
|
||||
private static boolean verbose = false;
|
||||
|
||||
|
||||
public static boolean isVerbose() { return verbose; }
|
||||
|
||||
// WARNING: verbosity spams the logs a LOT!
|
||||
public static void setVerbose(boolean v) { verbose = v; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user