Skip to content

Commit ad46d93

Browse files
author
Michael Brewer
authored
fix: Temp fix to correct unit tests
1 parent 7a39f0b commit ad46d93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws_lambda_powertools/logging/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def _get_log_level(level: Union[str, int]) -> Union[str, int]:
290290
if isinstance(level, int):
291291
return level
292292

293-
log_level: str = level or os.getenv("LOG_LEVEL", logging.INFO)
293+
log_level: str = level or os.getenv("LOG_LEVEL", "INFO")
294294
return log_level.upper()
295295

296296
@staticmethod

0 commit comments

Comments
 (0)