Skip to content

Commit

Permalink
Fix logging calls for additional properties
Browse files Browse the repository at this point in the history
  • Loading branch information
totycro committed Aug 19, 2024
1 parent 8f7157a commit 4e1745e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pygeoapi/api/itemtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,9 @@ def get_collection_items(
for k, v in request.params.items():
if k not in reserved_fieldnames:
if k in list(p.fields.keys()):
LOGGER.debug(f'Adding custom property filter {k}={v}')
LOGGER.debug(f'Adding property filter {k}={v}')
else:
LOGGER.debug('Adding property filter {k}={v}')
LOGGER.debug(f'Adding additional property filter {k}={v}')

properties.append((k, v))

Expand Down

0 comments on commit 4e1745e

Please sign in to comment.