Add way to toggle certain spam logs

This commit is contained in:
KingRainbow44
2023-08-12 22:12:48 -04:00
Unverified
parent 70e6d7f334
commit afc5841596
3 changed files with 32 additions and 16 deletions
@@ -0,0 +1,10 @@
package emu.grasscutter;
public final class DebugConstants {
public static boolean LOG_ABILITIES = false;
public static boolean LOG_LUA_SCRIPTS = false;
private DebugConstants() {
// Prevent instantiation.
}
}