summaryrefslogtreecommitdiff
path: root/setuptools/logging.py
Commit message (Collapse)AuthorAgeFilesLines
* Replace condition to patch distutils.dist.logAnderson Bravalheri2022-11-231-1/+2
| | | | | As `distutils.log.Log` was backfilled for compatibility we no longer can use this as a condition.
* Restore protection of distutils.log patching.Jason R. Coombs2022-10-081-0/+5
|
* Suppress monkeypatch when Log is gone, indicating distutils is using logging ↵Jason R. Coombs2022-10-051-1/+2
| | | | natively.
* Remove hack around distutils.dist.log, no longer relevant with ↵Jason R. Coombs2022-10-051-6/+0
| | | | pypa/distutils#183.
* fixed some spelling mistakes,Bastian Venthur2022-06-141-1/+1
| | | | that's all :)
* 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