Skip to content

Commit

Permalink
Allow for additional args in DummyLogEmitterProvider.get_log_emitter(…
Browse files Browse the repository at this point in the history
…) to match LogEmitterProvider.get_log_emitter()
  • Loading branch information
pranavmarla committed Aug 6, 2022
1 parent 559ae9a commit 6b1ef2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opentelemetry-sdk/tests/test_configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(self, resource=None):
def add_log_processor(self, processor):
self.processor = processor

def get_log_emitter(self, name):
def get_log_emitter(self, name, *args, **kwargs):
return DummyLogEmitter(name, self.resource, self.processor)

def force_flush(self, *args, **kwargs):
Expand Down

0 comments on commit 6b1ef2d

Please sign in to comment.