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 cc26336 commit 373053dCopy full SHA for 373053d
src/environment.py
@@ -17,7 +17,6 @@ def load_env(key: str, default: str) -> str:
17
value = os.getenv(key)
18
if value:
19
return value
20
- print(f"Can't load env-variable for: '{key}' - falling back to DEFAULT {key}='{default}'")
21
logger.warning(f"Can't load env-variable for: '{key}' - falling back to DEFAULT {key}='{default}'")
22
return default
23
0 commit comments