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.

Author vinay.sajip
Recipients srid, vinay.sajip
Date 2009-07-09.10:02:26
SpamBayes Score 5.7785823e-05
Marked as misclassified No
Message-id <1247133748.27.0.644493436822.issue6435@psf.upfronthosting.co.za>
In-reply-to
Content
> But the cache needs to be invalidated when `exc_info` is changed -
> as in set to None when it was a traceback object.

When does the exc_info change for a record? AFAIK it's set when you 
create a LogRecord, and that's it.

To be honest, I'm not sure why you need that specific recipe. Notice 
the comment made by a user against the recipe. But if you are set on 
doing it like this, then suppose I configure as follows:

Create a StreamHandler(sys.stderr) and a StreamHandler(sys.stdout).
Create a Formatter and attach it to the output handler.
Create a Formatter with the format string used above but with 
an "error:" prefix, and attach it to the error handler.
Add a Filter to each handler. This can be a single Filter class which 
either passes everything above a threshold or everything below a 
threshold. This will only have a few lines of code. Attach two such 
instances, suitably configured, to the appropriate handlers.
Attach both handlers to the root logger (or some other logger).

How will this differ in its effect from your recipe?
History
Date User Action Args
2009-07-09 10:02:28vinay.sajipsetrecipients: + vinay.sajip, srid
2009-07-09 10:02:28vinay.sajipsetmessageid: <1247133748.27.0.644493436822.issue6435@psf.upfronthosting.co.za>
2009-07-09 10:02:27vinay.sajiplinkissue6435 messages
2009-07-09 10:02:26vinay.sajipcreate