From fa681ce246c98de6242af708e4e03f533bcf2d5a Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Sat, 18 Feb 2023 09:49:30 +0100 Subject: [PATCH] add timestamp to debug SQL output --- lib-php/DebugHtml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib-php/DebugHtml.php b/lib-php/DebugHtml.php index 0edc081a..5d12be67 100644 --- a/lib-php/DebugHtml.php +++ b/lib-php/DebugHtml.php @@ -135,7 +135,7 @@ class Debug public static function printSQL($sSQL) { - echo '

'.$sSQL.'

'."\n"; + echo '

'.date('c').' '.$sSQL.'

'."\n"; } private static function outputVar($mVar, $sPreNL) -- 2.39.5