File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/_shared_internal Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
1313## Unreleased
1414
15+ - Prevent possible endless recursion from happening in `SimpleLogRecordProcessor.on_emit`,
16+ ([#4799](https://github.com/open-telemetry/opentelemetry-python/pull/4799)).
17+
1518## Version 1.39.0/0.60b0 (2025-12-03)
1619
1720- `opentelemetry-api`: Convert objects of any type other than AnyValue in attributes to string to be exportable
@@ -25,8 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2528 ([#4760](https://github.com/open-telemetry/opentelemetry-python/pull/4760))
2629- semantic-conventions: Bump to 1.38.0
2730 ([#4791](https://github.com/open-telemetry/opentelemetry-python/pull/4791))
28- - Prevent possible endless recursion from happening in `SimpleLogRecordProcessor.on_emit`,
29- ([#4799](https://github.com/open-telemetry/opentelemetry-python/pull/4799)).
3031- [BREAKING] Remove LogData and extend SDK LogRecord to have instrumentation scope
3132 ([#4676](https://github.com/open-telemetry/opentelemetry-python/pull/4676))
3233- [BREAKING] Rename several classes from Log to LogRecord
Original file line number Diff line number Diff line change @@ -83,9 +83,6 @@ def shutdown(self):
8383
8484_logger = logging .getLogger (__name__ )
8585_logger .addFilter (DuplicateFilter ())
86- _propagate_false_logger = logging .getLogger (__name__ + ".propagate.false" )
87- _propagate_false_logger .addFilter (DuplicateFilter ())
88- _propagate_false_logger .propagate = False
8986
9087
9188class BatchProcessor (Generic [Telemetry ]):
You can’t perform that action at this time.
0 commit comments