This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Simplify and clarify logging internals
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: alex, python-dev, vinay.sajip
Priority: normal Keywords: needs review, patch

Created on 2013-05-24 00:54 by alex, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
log-simple.diff alex, 2013-05-24 00:54 review
Messages (2)
msg189889 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2013-05-24 00:54
This patch splits a dictionary that maps integer and string representations of levels to each other out into two dictionaries, one which goes int -> string, and the other which is string -> int. This makes it easier to reason about what a variable contains.
msg189949 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-25 10:20
New changeset 5629bf4c6bba by Vinay Sajip in branch 'default':
Closes #18046: Simplified logging internals relating to levels and their names. Thanks to Alex Gaynor for the patch.
http://hg.python.org/cpython/rev/5629bf4c6bba
History
Date User Action Args
2022-04-11 14:57:45adminsetgithub: 62246
2013-05-25 10:20:50python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg189949

resolution: fixed
stage: patch review -> resolved
2013-05-24 01:59:52alexsetnosy: + vinay.sajip
2013-05-24 00:54:35alexcreate