Skip to content

Commit

Permalink
reduce logging output on info
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Nov 30, 2023
1 parent b9d789a commit d0884e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/collective/elastic/ingest/ingest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def ingest(content, full_schema, index_name):
info = {"expansion_fields": EXPANSION_FIELDS}
postprocess(content, info)

logger.info(f"Index content: {pformat(content)}")
logger.debug(f"Index content: {pformat(content)}")
client = get_client()
kwargs = dict(
index=index_name,
Expand Down

0 comments on commit d0884e3

Please sign in to comment.