Skip to content

Commit 08a7a0b

Browse files
committed
fixup! config loading logging tweaks
1 parent ab0fce7 commit 08a7a0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openeo_driver/config/load.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ def __call__(self, force_reload: bool = False) -> OpenEoBackendConfig:
7373
def get(self, force_reload: bool = False) -> OpenEoBackendConfig:
7474
"""Lazy load the config."""
7575
if self._config is None:
76-
logging.info("lazy load config")
76+
_log.info("Lazy load config")
7777
self._config = self._load()
7878
elif force_reload:
79-
logging.info("force reload config")
79+
_log.info("Force reload config")
8080
self._config = self._load()
8181

8282
return self._config

0 commit comments

Comments
 (0)