Skip to content

Commit

Permalink
Make a very frequent log message debug
Browse files Browse the repository at this point in the history
  • Loading branch information
neilmb committed Feb 18, 2025
1 parent 4510c5b commit 0e0452a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckanext/geodatagov/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,10 +494,10 @@ def before_dataset_search(self, search_params):
path = ''

if 'collection_package_id' not in fq and 'bulk_process' not in path:
log.info('Added FQ to collection_package_id')
log.debug('Added FQ to collection_package_id')
fq += ' -collection_package_id:["" TO *]'
else:
log.info('NOT Added FQ to collection_package_id')
log.debug('NOT Added FQ to collection_package_id')

search_params['fq'] = fq
return search_params
Expand Down

0 comments on commit 0e0452a

Please sign in to comment.