Skip to content

Commit f9a6ec6

Browse files
fix: pre-commit
1 parent ab3dc72 commit f9a6ec6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

application_sdk/observability/logger_adaptor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,13 @@ def __init__(self, logger_name: str) -> None:
288288

289289
# Update format string to use the bound logger_name
290290
atlan_format_str = "<green>{time:YYYY-MM-DD HH:mm:ss}</green> <blue>[{level}]</blue> <cyan>{extra[logger_name]}</cyan> - <level>{message}</level>"
291-
291+
292292
# Colorize the logs only if the log level is DEBUG
293293
if LOG_LEVEL == "DEBUG":
294294
colorize = True
295295
else:
296296
colorize = False
297-
297+
298298
self.logger.add(
299299
sys.stderr,
300300
format=atlan_format_str,

0 commit comments

Comments
 (0)