Remove debug logging config value

Signed-off-by: solonovamax <solonovamax@12oclockpoint.com>
This commit is contained in:
solonovamax 2021-11-21 20:13:06 -05:00
parent ac7a7f3129
commit e60dfe0242
No known key found for this signature in database
GPG Key ID: F720367A7897BBFA
7 changed files with 5 additions and 16 deletions

@ -1 +1 @@
Subproject commit b85bc70f1424d86bbb568a9345e58c800fc6cf3f
Subproject commit 51b30fb818daa2dd8e6a15308f15cd4ee68e4b5b

@ -1 +1 @@
Subproject commit ba6b654f97316cf6987360dba61e4e39a125879b
Subproject commit 04865538bfa596f361c7364c607b492bbe754451

@ -1 +1 @@
Subproject commit 5957a2bf7dbf6f6c2487d31d189fa127e0090964
Subproject commit b9f98da059b4daa9513c09151170f5239fd76d71

@ -1 +1 @@
Subproject commit e89c175081921387008e258a67e861d6a9c0bc22
Subproject commit c5db2fcd23c8cd16b1ad836fbb9ae7dac7c356bb

@ -1 +1 @@
Subproject commit 3f89e60dea9f583cb95f39f275000ff4d6586705
Subproject commit 355e024025e9906f76c2c1c4332081549b597c6c

View File

@ -19,8 +19,6 @@ public interface PluginConfig {
boolean isDebugCommands();
boolean isDebugLogging();
boolean isDebugProfiler();
boolean isDebugScript();

View File

@ -43,10 +43,6 @@ public class PluginConfigImpl implements ConfigTemplate, com.dfsek.terra.api.con
@Default
private boolean debugCommands = false;
@Value("debug.log")
@Default
private boolean debugLog = false; // TODO: 2021-08-30 remove me
@Value("debug.profiler")
@Default
private boolean debugProfiler = false;
@ -128,11 +124,6 @@ public class PluginConfigImpl implements ConfigTemplate, com.dfsek.terra.api.con
return debugCommands;
}
@Override
public boolean isDebugLogging() {
return debugLog;
}
@Override
public boolean isDebugProfiler() {
return debugProfiler;