Skip to content

Commit

Permalink
refactor: more logs for ext stac collection merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunato committed May 31, 2024
1 parent 6ab59e5 commit 0277f86
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion eodag/rest/stac.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,11 @@ def __generate_stac_collection(
)
except TypeError as e:
logger.warning(
f"Could not merge keywords from external collection for {product_type}: {str(e)}"
f"Could not merge keywords from external collection for {product_type['ID']}: {str(e)}"
)
logger.debug(
f"External collection keywords: {str(ext_stac_collection['keywords'])}, ",
f"Product type keywords: {str(product_type_collection['keywords'])}",
)

# merge providers
Expand Down

0 comments on commit 0277f86

Please sign in to comment.