[issue7869] traceback from logging is unusable.

2010-02-07 Thread Vinay Sajip
Vinay Sajip added the comment: Fix (slightly modified version of patch) checked into trunk (r78081), thanks Inada Naoki! -- resolution: -> fixed status: open -> closed ___ Python tracker _

[issue7869] traceback from logging is unusable.

2010-02-07 Thread R. David Murray
Changes by R. David Murray : -- nosy: +vinay.sajip priority: -> normal stage: -> patch review type: behavior -> feature request versions: -Python 2.5 ___ Python tracker ___ ___

[issue7869] traceback from logging is unusable.

2010-02-06 Thread INADA Naoki
INADA Naoki added the comment: This patch shows filename and lineno. I can specify my wrong logging code with this patch. -- keywords: +patch Added file: http://bugs.python.org/file16164/logging_show_file_and_line.patch ___ Python tracker

[issue7869] traceback from logging is unusable.

2010-02-06 Thread INADA Naoki
New submission from INADA Naoki : When exception raised in logging, traceback is shown but it doesn't tell me which logging code cause the error. $ cat unusable_traceback.py import logging logging.warn('%s %s', 1) # not enough arguments. $ python unusable_traceback.py Traceback (most recent c