From 91c3557610878e2fec3a231ac1f93539662db146 Mon Sep 17 00:00:00 2001 From: moisterrific <57187883+moisterrific@users.noreply.github.com> Date: Wed, 3 Jun 2020 22:54:51 -0400 Subject: [PATCH] Change DebugLogs to true by default Given that this is a pre-release and it no longer makes the CLI unreadable I think it should be on by default to make troubleshooting easier. --- TShockAPI/ConfigFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/ConfigFile.cs b/TShockAPI/ConfigFile.cs index 78184977..89b3c702 100644 --- a/TShockAPI/ConfigFile.cs +++ b/TShockAPI/ConfigFile.cs @@ -525,7 +525,7 @@ namespace TShockAPI public bool ShowBackupAutosaveMessages = true; [Description("Whether or not the server should output debug level messages related to system operation.")] - public bool DebugLogs = false; + public bool DebugLogs = true; [Description("Determines the range in tiles that a bomb can affect tiles from detonation point.")] public int BombExplosionRadius = 5;