Skip to content

Commit fcc7dfb

Browse files
authored
fix(logger): unset CORVA_LOGGER.propagate = False for OTel Log Sending (refs EE-31) (#90)
refs corva-ai/otel#37 refs https://corvaqa.atlassian.net/browse/EE-31
1 parent f0125c1 commit fcc7dfb

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Fixed
9+
- Unset the `CORVA_LOGGER.propagate = False`, so the OTel handler will be able to collect and send those logs as well
10+
refs https://github.com/corva-ai/otel/pull/37
11+
812

913

1014
## [1.11.4] - 2024-02-08

src/corva/logger.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111

1212
CORVA_LOGGER = logging.getLogger('corva')
1313
CORVA_LOGGER.setLevel(SETTINGS.LOG_LEVEL)
14-
CORVA_LOGGER.propagate = False # do not pass messages to ancestor loggers
14+
15+
# unset to pass messages to ancestor loggers, including OTel Log Sending handler
16+
# see https://github.com/corva-ai/otel/pull/37
17+
# see https://corvaqa.atlassian.net/browse/EE-31
18+
# CORVA_LOGGER.propagate = False
1519

1620

1721
def get_formatter(

0 commit comments

Comments
 (0)