Skip to content

Commit

Permalink
Merge pull request #284 from GSA/nmb/debug-fq-log
Browse files Browse the repository at this point in the history
Make a very frequent log message debug
  • Loading branch information
FuhuXia authored Feb 18, 2025
2 parents 4510c5b + a26a34c commit 19ea728
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="ckanext-geodatagov",
version="0.2.9",
version="0.2.10",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 19ea728

Please sign in to comment.