File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/_logs/_internal/export Expand file tree Collapse file tree 2 files changed +3
-1
lines changed 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
20
20
[ #3355 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3355 ) )
21
21
- Include endpoint in Grpc transient error warning
22
22
[ #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 ) )
23
25
24
26
## Version 1.18.0/0.39b0 (2023-05-04)
25
27
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ def _export_batch(self) -> int:
307
307
record = self ._queue .pop ()
308
308
self ._log_records [idx ] = record
309
309
idx += 1
310
- token = attach (set_value ("suppress_instrumentation" , True ))
310
+ token = attach (set_value (_SUPPRESS_INSTRUMENTATION_KEY , True ))
311
311
try :
312
312
self ._exporter .export (self ._log_records [:idx ]) # type: ignore
313
313
except Exception : # pylint: disable=broad-except
You can’t perform that action at this time.
0 commit comments