summaryrefslogtreecommitdiff
path: root/setuptools/logging.py
Commit message (Collapse)AuthorAgeFilesLines
* Update setuptools/logging.pyAnderson Bravalheri2022-01-241-3/+3
| | | Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* Fix weird distutils.log reloading/caching situationAnderson Bravalheri2022-01-221-0/+6
| | | | | | | For some reason `distutils.log` module is getting cached in `distutils.dist` and then loaded again when we have the opportunity to patch it. This implies: id(distutils.log) != id(distutils.dist.log). We need to make sure the same module object is used everywhere.
* Monkey patch distutils.log.set_threshold so the Python logger honors calls ↵Jason R. Coombs2021-12-281-0/+8
| | | | to it.
* Add setuptools.log to supersede distutils.log. Ref #2973.Jason R. Coombs2021-12-281-0/+22