From 597e403d5022f55949411ad589e74f41e978db33 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Thu, 28 Jan 2021 00:22:28 -0800 Subject: [PATCH] Disable debug logs by default --- TShockAPI/ConfigFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/ConfigFile.cs b/TShockAPI/ConfigFile.cs index 63937614..472bda65 100644 --- a/TShockAPI/ConfigFile.cs +++ b/TShockAPI/ConfigFile.cs @@ -64,7 +64,7 @@ namespace TShockAPI /// Whether or not the server should output debug level messages related to system operation. [Description("Whether or not the server should output debug level messages related to system operation.")] - public bool DebugLogs = true; + public bool DebugLogs = false; /// Prevents users from being able to login before they finish connecting. [Description("Prevents users from being able to login before they finish connecting.")]