From ba11a936db3605f22644a5749b1a5f4fc326c1a1 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Wed, 11 Dec 2024 10:36:31 +0900 Subject: [PATCH] DB IO remove debug placeholder output --- www/lib/CoreLibs/DB/IO.php | 1 - 1 file changed, 1 deletion(-) diff --git a/www/lib/CoreLibs/DB/IO.php b/www/lib/CoreLibs/DB/IO.php index 7af3407f..4daad5b8 100644 --- a/www/lib/CoreLibs/DB/IO.php +++ b/www/lib/CoreLibs/DB/IO.php @@ -1332,7 +1332,6 @@ class IO */ private function __dbCheckQueryParams(string $query, array $params): bool { - $this->log->debug('DB QUERY PARAMS REGEX', ConvertPlaceholder::REGEX_LOOKUP_PLACEHOLDERS); $placeholder_count = $this->__dbCountQueryParams($query); $params_count = count($params); if ($params_count != $placeholder_count) {