Skip to content

Commit 68e0138

Browse files
committed
make changes
1 parent b8e3a17 commit 68e0138

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

opentelemetry-sdk/src/opentelemetry/sdk/_shared_internal/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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

9188
class BatchProcessor(Generic[Telemetry]):

0 commit comments

Comments
 (0)