Bolt is creating a `WebClient` instance for each request its handling here: https://github.com/slackapi/bolt-python/blob/3ad0788451b0dd2ba88884712ba96d26557e40f8/slack_bolt/app/app.py#L1376 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.