]> git.openstreetmap.org Git - nominatim.git/blobdiff - settings/settings.php
Merge pull request #425 from lonvia/disable-aux-tables
[nominatim.git] / settings / settings.php
index 266ff356b64773f2229fa4d49834795a7c2e915f..d44bb967d4ab19687bf0a92fb583faf0934bba4b 100644 (file)
        @define('CONST_PolygonOutput_MaximumTypes', 1);
 
        // Log settings
-       @define('CONST_Log_DB', true);
+       // Set to true to log into new_query_log table.
+       // You should set up a cron job that regularly clears out this table.
+       @define('CONST_Log_DB', false);
+       // Set to a file name to enable logging to a file.
        @define('CONST_Log_File', false);
-       @define('CONST_Log_File_Format', 'TODO'); // Currently hard coded
-       @define('CONST_Log_File_SearchLog', '');
-       @define('CONST_Log_File_ReverseLog', '');