This is an automated email from the ASF dual-hosted git repository. rkk pushed a commit to branch SDAP-540-solr-mutex in repository https://gitbox.apache.org/repos/asf/sdap-nexus.git
commit 23c6d63f0d2cb71e63f1eab82c2659e4a658ecb4 Author: rileykk <[email protected]> AuthorDate: Thu Dec 18 10:43:43 2025 -0800 add some log statements --- data-access/nexustiles/backends/zarr/backend.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data-access/nexustiles/backends/zarr/backend.py b/data-access/nexustiles/backends/zarr/backend.py index 6a59409..fffba46 100644 --- a/data-access/nexustiles/backends/zarr/backend.py +++ b/data-access/nexustiles/backends/zarr/backend.py @@ -93,6 +93,8 @@ class ZarrBackend(AbstractTileService): self.__ds: xr.Dataset = self.__open_ds() + logger.info(f'Created zarr backend for {self._name} at {self.__path}') + def __open_ds(self) -> xr.Dataset: if self.__store_type in ['', 'file']: store = self.__path
