Skip to content

Commit

Permalink
fixup! prime_caches: add version to logging
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Sep 28, 2023
1 parent 9286dec commit 3c6c434
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/openeo_aggregator/background/prime_caches.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ def prime_caches(
require_zookeeper_writes: bool = False,
fail_mode: str = FAIL_MODE_FAILFAST,
):
with TimingLogger(title=f"Prime caches (version {openeo_aggregator.about.__version__})", logger=_log):
_log.info(f"{openeo_aggregator.about.__version__=}")
with TimingLogger(title=f"Prime caches", logger=_log):
config: AggregatorConfig = get_config(config)
_log.info(f"Using config: {config.get('config_source')=}")

Expand Down

0 comments on commit 3c6c434

Please sign in to comment.