Add verbose message logger

This commit is contained in:
2022-08-26 00:13:06 +02:00
parent 59a63b724a
commit a032712450
3 changed files with 64 additions and 0 deletions

View 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; }
}