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
7
7
8
8
## [ Unreleased]
9
9
10
+ - Fix get_log_emitter instrumenting_module_version args typo
11
+ ([ #2830 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2830 ) )
10
12
- Fix OTLP gRPC exporter warning message
11
13
([ #2781 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2781 ) )
12
14
- Fix tracing decorator with late configuration
Original file line number Diff line number Diff line change @@ -427,13 +427,13 @@ def resource(self):
427
427
def get_log_emitter (
428
428
self ,
429
429
instrumenting_module_name : str ,
430
- instrumenting_module_verison : str = "" ,
430
+ instrumenting_module_version : str = "" ,
431
431
) -> LogEmitter :
432
432
return LogEmitter (
433
433
self ._resource ,
434
434
self ._multi_log_processor ,
435
435
InstrumentationScope (
436
- instrumenting_module_name , instrumenting_module_verison
436
+ instrumenting_module_name , instrumenting_module_version
437
437
),
438
438
)
439
439
You can’t perform that action at this time.
0 commit comments