From 41ecfa56ae5a36e9bf02f18983623d2c58a85589 Mon Sep 17 00:00:00 2001 From: Jean-Marc Pigeon Date: Mon, 24 Nov 2025 18:58:44 -0500 Subject: [PATCH] Improving the gessql.php trace capability --- www/gessql.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/gessql.php b/www/gessql.php index 0b77616..260b4b1 100644 --- a/www/gessql.php +++ b/www/gessql.php @@ -90,7 +90,8 @@ class probe { $sql .= " OFFSET {$this->offset}"; } - rou_alert(0,"class PROBE Param=<$this->params>"); + $paramsStr = json_encode($this->params); + rou_alert(0,"class PROBE sql=<$sql>, params=<$paramsStr>"); $stmt = $this->db->Select($sql,$this->params); return $stmt->fetchAll(); } -- 2.47.3