diff --git a/xcube_stac/store_mode.py b/xcube_stac/store_mode.py index c733158..9482ab1 100644 --- a/xcube_stac/store_mode.py +++ b/xcube_stac/store_mode.py @@ -652,6 +652,10 @@ def _retry_search_tiles(self, **search_params) -> list[pystac.Item]: except Exception as e: if attempt == retries: raise + print( + f"{datetime.datetime.now()}: Attempt {attempt} failed with" + f"search parameters {search_params}: {e}. Retrying in 1 seconds." + ) LOG.info( f"Attempt {attempt} failed with search parameters " f"{search_params}: {e}. Retrying in 1 seconds."