File tree Expand file tree Collapse file tree
opentelemetry-sdk/src/opentelemetry/sdk/_logs/_internal/export Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020 [ #3355 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3355 ) )
2121- Include endpoint in Grpc transient error warning
2222 [ #3362 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3362 ) )
23+ - Fixed bug where logging export is tracked as trace
24+ [ #3375 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3375 ) )
2325
2426## Version 1.18.0/0.39b0 (2023-05-04)
2527
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ def _export_batch(self) -> int:
307307 record = self ._queue .pop ()
308308 self ._log_records [idx ] = record
309309 idx += 1
310- token = attach (set_value ("suppress_instrumentation" , True ))
310+ token = attach (set_value (_SUPPRESS_INSTRUMENTATION_KEY , True ))
311311 try :
312312 self ._exporter .export (self ._log_records [:idx ]) # type: ignore
313313 except Exception : # pylint: disable=broad-except
You can’t perform that action at this time.
0 commit comments