From b1f6528605548647256041f51fa3688ea6890161 Mon Sep 17 00:00:00 2001 From: AGuyNamedJens Date: Thu, 30 Mar 2023 22:09:36 +0200 Subject: [PATCH] Forgot to remove this debug-debug log lol --- public/install/functions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/public/install/functions.php b/public/install/functions.php index 9806e125..99ed6214 100644 --- a/public/install/functions.php +++ b/public/install/functions.php @@ -266,7 +266,6 @@ function wh_log(string $message, string $level = 'info', array $context = []): v switch (strtolower($level)) { case 'debug': // Only log debug messages if APP_DEBUG is true - wh_log('APP_DEBUG: ' . getEnvironmentValue('APP_DEBUG')); if(getEnvironmentValue('APP_DEBUG') === false) return; $log->debug($message, $context); break;