forked from LogBlock/LogBlock
Enabled dumpDeletedLog by default.
This commit is contained in:
@@ -66,7 +66,7 @@ public class Config {
|
|||||||
if (subkeys == null)
|
if (subkeys == null)
|
||||||
subkeys = new ArrayList<String>();
|
subkeys = new ArrayList<String>();
|
||||||
if (!subkeys.contains("dumpDeletedLog"))
|
if (!subkeys.contains("dumpDeletedLog"))
|
||||||
config.setProperty("clearlog.dumpDeletedLog", false);
|
config.setProperty("clearlog.dumpDeletedLog", true);
|
||||||
if (!subkeys.contains("keepLogDays"))
|
if (!subkeys.contains("keepLogDays"))
|
||||||
config.setProperty("clearlog.keepLogDays", -1);
|
config.setProperty("clearlog.keepLogDays", -1);
|
||||||
subkeys = config.getKeys("logging");
|
subkeys = config.getKeys("logging");
|
||||||
@@ -112,7 +112,7 @@ public class Config {
|
|||||||
delay = config.getInt("consumer.delay", 6);
|
delay = config.getInt("consumer.delay", 6);
|
||||||
useBukkitScheduler = config.getBoolean("consumer.useBukkitScheduler", true);
|
useBukkitScheduler = config.getBoolean("consumer.useBukkitScheduler", true);
|
||||||
keepLogDays = config.getInt("clearlog.keepLogDays", -1);
|
keepLogDays = config.getInt("clearlog.keepLogDays", -1);
|
||||||
dumpDeletedLog = config.getBoolean("clearlog.dumpDeletedLog", false);
|
dumpDeletedLog = config.getBoolean("clearlog.dumpDeletedLog", true);
|
||||||
logBlockCreations = config.getBoolean("logging.logBlockCreations", true);
|
logBlockCreations = config.getBoolean("logging.logBlockCreations", true);
|
||||||
logBlockDestroyings = config.getBoolean("logging.logBlockDestroyings", true);
|
logBlockDestroyings = config.getBoolean("logging.logBlockDestroyings", true);
|
||||||
logSignTexts = config.getBoolean("logging.logSignTexts", false);
|
logSignTexts = config.getBoolean("logging.logSignTexts", false);
|
||||||
|
Reference in New Issue
Block a user