From: Sarah Hoffmann Date: Sat, 18 Feb 2023 08:49:30 +0000 (+0100) Subject: add timestamp to debug SQL output X-Git-Tag: v4.3.0~98 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/fa681ce246c98de6242af708e4e03f533bcf2d5a add timestamp to debug SQL output --- 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)