Skip to content

Commit

Permalink
Merge pull request #463 from ilkecan/master
Browse files Browse the repository at this point in the history
logger: Set `allow_logging_basic_config` as `False`
  • Loading branch information
danielmorell authored Jan 17, 2025
2 parents b7b489d + 48b2ade commit 8805c6f
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 8805c6f

Please sign in to comment.