Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Remove unnecessary logger #6

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions ldotel/tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from opentelemetry import trace
from opentelemetry.trace import Span, set_span_in_context, get_current_span
from opentelemetry.context import attach, detach
from logging import getLogger, Logger
from dataclasses import dataclass


Expand All @@ -26,12 +25,6 @@ class HookOptions:
span events.
"""

logger: Logger = getLogger('launchdarkly-otel')
"""
The logger used for hook execution. Provide a custom logger or fallback to
a default logger.
"""


class Hook(LDHook):
def __init__(self, options: HookOptions = HookOptions()):
Expand Down
Loading