]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix logging of lookup calls
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 13 Apr 2020 09:53:44 +0000 (11:53 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Mon, 13 Apr 2020 09:55:24 +0000 (11:55 +0200)
Log start was called but the actual writing was missing.

website/lookup.php

index 39a17ebdb693efd1706ee9f3f758d1b1c050f6db..7675ae1358006870631a8055c69812b8a00a4679 100644 (file)
@@ -81,5 +81,7 @@ $bShowPolygons = '';
 $aExcludePlaceIDs = array();
 $sMoreURL = '';
 
+logEnd($oDB, $hLog, 1);
+
 $sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat;
 include(CONST_BasePath.'/lib/template/search-'.$sOutputTemplate.'.php');