From a131aa50f4fbd067f695c667c699a2351e6c8e5a Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 7 Aug 2025 16:54:11 +0200 Subject: [PATCH] wip #7684 --- app/process.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/process.php b/app/process.php index cb374c1..0f8c818 100644 --- a/app/process.php +++ b/app/process.php @@ -52,10 +52,10 @@ try { } @ob_end_clean(); - error_log(':) ' . $res); + error_log($_POST['operation'] . ' :) ' . $res); die($res); } catch (Exception $e) { @ob_end_clean(); - error_log('!!' . $e->getMessage()); + error_log($_POST['operation'] . ' !! ' . $e->getMessage()); die('!!' . $e->getMessage()); } \ No newline at end of file -- 2.39.5