Skip to content

Commit

Permalink
logger: Set allow_logging_basic_config as False
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkecan committed Nov 14, 2024
1 parent a641597 commit 48b2ade
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rollbar/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ def __init__(self,

if access_token is not None:
rollbar.init(
access_token, environment, **resolve_logging_types(kw))
access_token, environment,
allow_logging_basic_config=False, # a handler shouldn't configure the root logger
**resolve_logging_types(kw))

self.notify_level = _checkLevel(level)

Expand Down

0 comments on commit 48b2ade

Please sign in to comment.