disabled debug flag

This commit is contained in:
Lorenzo
2020-06-12 13:54:18 +02:00
parent 431c245043
commit 678f4c9e72
3 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ import java.util.logging.Level;
public class Debugger
{
// Enable or disable debugging messages (aka verbosity).
private final boolean DEBUGGING = true;
private final boolean DEBUGGING = false;
// Initialize needed variables. We will need those variables to be able to precisely debug the plugin.
private String className;