From 8c815d8dc070f1169e4306b94b399e5aac01cd54 Mon Sep 17 00:00:00 2001 From: patrick <patrick@algolibre.io> Date: Mon, 10 Feb 2025 02:57:47 +0000 Subject: [PATCH] Move error logs to error_log console --- helper.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper.inc.php b/helper.inc.php index 3926ad68..23e27021 100644 --- a/helper.inc.php +++ b/helper.inc.php @@ -44,7 +44,7 @@ function show_pdo_errors_if_any($pdo) $errorInfo = $pdo->errorInfo(); if ($errorInfo[0] != '00000') { // If there's an error (the SQLSTATE isn't '00000', which means no error) - echo 'Error: ' . $errorInfo[2]; // The third element contains the error message + error_log('Error: ' . $errorInfo[2]); // The third element contains the error message } }