Skip to content

Commit

Permalink
fix instrumenting_module_version typo
Browse files Browse the repository at this point in the history
  • Loading branch information
povilasv committed Jul 18, 2022
1 parent b7a37ab commit 1dd53b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opentelemetry-sdk/src/opentelemetry/sdk/_logs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,13 +427,13 @@ def resource(self):
def get_log_emitter(
self,
instrumenting_module_name: str,
instrumenting_module_verison: str = "",
instrumenting_module_version: str = "",
) -> LogEmitter:
return LogEmitter(
self._resource,
self._multi_log_processor,
InstrumentationScope(
instrumenting_module_name, instrumenting_module_verison
instrumenting_module_name, instrumenting_module_version
),
)

Expand Down

0 comments on commit 1dd53b8

Please sign in to comment.