Skip to content

Commit b49f5a9

Browse files
committed
Merge branch 'feature/improve-corva-logging-with-cloudwatch' of github.com:corva-ai/python-sdk into feature/improve-corva-logging-with-cloudwatch
2 parents 6fe1c23 + 5853752 commit b49f5a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/corva/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _is_otel_handler(handler: logging.Handler) -> bool:
3737
"""
3838
try:
3939
module = getattr(handler.__class__, "__module__", "") or ""
40-
name = handler.__class__.__name__ or ""
40+
name = handler.__class__.__name__
4141
ident = f"{module}.{name}".lower()
4242
return ("otel" in ident) or ("opentelemetry" in ident)
4343
except Exception:

0 commit comments

Comments
 (0)