[issue1709] logging: log actual function name

2008-01-02 Thread Vinay Sajip
Changes by Vinay Sajip: -- status: pending -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1709] logging: log actual function name

2008-01-02 Thread umaxx
umaxx added the comment: oops... i looked at python 2.4, not the latest trunk. my fault :( please close this issue. sorry for the noise... __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1709] logging: log actual function name

2008-01-01 Thread Vinay Sajip
Vinay Sajip added the comment: This must be some kind of SVN issue. Works fine on 2.5.1: Python 2.5.1 (r251:54863, May 2 2007, 16:56:35) [GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import logging >>> def myLoggingFunc

[issue1709] logging: log actual function name

2008-01-01 Thread Guido van Rossum
Changes by Guido van Rossum: -- assignee: -> vsajip nosy: +vsajip priority: -> low __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mail

[issue1709] logging: log actual function name

2007-12-30 Thread umaxx
New submission from umaxx: logging does not have a (formatter) option for logging the actual function name Logger class detects function name with findCaller() - *but* does not pass it to the makeRecord()-call in _log() - why? would be nice to see this feature implemented, no patch for now :(