We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab0fce7 commit 08a7a0bCopy full SHA for 08a7a0b
openeo_driver/config/load.py
@@ -73,10 +73,10 @@ def __call__(self, force_reload: bool = False) -> OpenEoBackendConfig:
73
def get(self, force_reload: bool = False) -> OpenEoBackendConfig:
74
"""Lazy load the config."""
75
if self._config is None:
76
- logging.info("lazy load config")
+ _log.info("Lazy load config")
77
self._config = self._load()
78
elif force_reload:
79
- logging.info("force reload config")
+ _log.info("Force reload config")
80
81
82
return self._config
0 commit comments