File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/_logs Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ - Fix get_log_emitter instrumenting_module_version args typo
11+ ([ #2830 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2830 ) )
1012- Fix OTLP gRPC exporter warning message
1113 ([ #2781 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2781 ) )
1214- Fix tracing decorator with late configuration
Original file line number Diff line number Diff line change @@ -427,13 +427,13 @@ def resource(self):
427427 def get_log_emitter (
428428 self ,
429429 instrumenting_module_name : str ,
430- instrumenting_module_verison : str = "" ,
430+ instrumenting_module_version : str = "" ,
431431 ) -> LogEmitter :
432432 return LogEmitter (
433433 self ._resource ,
434434 self ._multi_log_processor ,
435435 InstrumentationScope (
436- instrumenting_module_name , instrumenting_module_verison
436+ instrumenting_module_name , instrumenting_module_version
437437 ),
438438 )
439439
You can’t perform that action at this time.
0 commit comments