Always pass exc_info as a boolean.
Review Request #12055 — Created Feb. 12, 2022 and submitted — Latest diff uploaded
The
exc_info
argument to logging methods is just checked for
truthiness, but it's more correct to pass it as a bool rather than
passing in 1. This change does that for all offending calls.
Ran unit tests.