Skip to content

Commit 373053d

Browse files
committed
Logging setup handles print of warnings - remove redundant print
1 parent cc26336 commit 373053d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/environment.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ def load_env(key: str, default: str) -> str:
1717
value = os.getenv(key)
1818
if value:
1919
return value
20-
print(f"Can't load env-variable for: '{key}' - falling back to DEFAULT {key}='{default}'")
2120
logger.warning(f"Can't load env-variable for: '{key}' - falling back to DEFAULT {key}='{default}'")
2221
return default
2322

0 commit comments

Comments
 (0)