Skip to content

Commit

Permalink
🐛Deferred tasks: set default log level of messages in Faststream brok…
Browse files Browse the repository at this point in the history
…er to DEBUG (#6589)
  • Loading branch information
sanderegg authored Oct 24, 2024
1 parent 78dddeb commit aaabc92
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ def __init__(
ClassUniqueReference, type[BaseDeferredHandler]
] = {}

self.broker: RabbitBroker = RabbitBroker(rabbit_settings.dsn)
self.broker: RabbitBroker = RabbitBroker(
rabbit_settings.dsn, log_level=logging.DEBUG
)
self.router: RabbitRouter = RabbitRouter()

# NOTE: do not move this to a function, must remain in constructor
Expand Down

0 comments on commit aaabc92

Please sign in to comment.