Bolt is creating a WebClient instance for each request its handling here:
|
client_per_request: WebClient = WebClient( |
It does not pass the logger param.
This means that all requests that are logged by that client won't use the logger provided to the App.
Bolt is creating a
WebClientinstance for each request its handling here:bolt-python/slack_bolt/app/app.py
Line 1376 in 3ad0788
It does not pass the
loggerparam.This means that all requests that are logged by that client won't use the logger provided to the App.