Issue 18046: Simplify and clarify logging internals (original) (raw)

Issue18046

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:45 admin set github: 62246
2013-05-25 10:20:50 python-dev set status: open -> closednosy: + python-devmessages: + resolution: fixedstage: patch review -> resolved
2013-05-24 01:59:52 alex set nosy: + vinay.sajip
2013-05-24 00:54:35 alex create