From 8e6bb093743f7db8cd435a2691dd07cfa49c0c01 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Sun, 24 Mar 2024 12:20:09 +0100 Subject: [PATCH] make LANGSANI debug dependent (#8057) --- code/_helpers/logging.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/_helpers/logging.dm b/code/_helpers/logging.dm index 994255af6e..f93169ac3a 100644 --- a/code/_helpers/logging.dm +++ b/code/_helpers/logging.dm @@ -23,7 +23,8 @@ //print a testing-mode debug message to world.log /proc/testing(msg) - to_world_log("## TESTING: [msg]") + if (config.log_debug) //CHOMPEdit + to_world_log("## TESTING: [msg]") /proc/log_admin(text) admin_log.Add(text)