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: 2.4.4 Logging LogRecord attributes broken
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: murrayg, nnorwitz
Priority: normal Keywords:

Created on 2007-02-27 03:28 by murrayg, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg31379 - (view) Author: Glenn Murray (murrayg) Date: 2007-02-27 03:28
The following module gives different results under 2.4.3 and 2.4.4
(running on Kubuntu, Dapper and Edgy releases, resp.) 

#!/usr/bin/env python
import logging

logger = logging.getLogger("MyLogger")
logger.setLevel(logging.DEBUG)
handler = logging.StreamHandler()
format = "%(levelname)-8s %(module)s %(lineno)d %(message)s"
handler.setFormatter(logging.Formatter(format))
logger.addHandler(handler)

logger.info("Yo")


On 2.4.3 I get
INFO     tmplogger 11 Yo

On 2.4.4 I get
INFO     __init__ 1072 Yo


The versions are 

Python 2.4.3 (#2, Oct  6 2006, 07:52:30)
[GCC 4.0.3 (Ubuntu 4.0.3-1ubuntu5)] on linux2

and

Python 2.4.4c1 (#2, Oct 11 2006, 21:51:02)
[GCC 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)] on linux2
msg31380 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2007-02-27 05:41
Dupe of 1669498.
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44630
2007-02-27 03:28:48murraygcreate