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 tarek
Recipients akitada, cavallo71, christian.heimes, tarek
Date 2009-05-06.20:37:53
SpamBayes Score 4.0624614e-06
Marked as misclassified No
Message-id <1241642275.05.0.399793131743.issue3992@psf.upfronthosting.co.za>
In-reply-to
Content
After more thinking, I think we can use a better strategy:
 
- adding a deprecate warning inside the log module 
  and keep the code as it is
- set in the __init__ module the regular logger 
- change every call in distutils from the old log system to the new

now for the access problem, can you explain me when+how it happens 
exactly ?

btw, in your patch: 

- you have a raise 
- "except:" should be "except ImportError:"
- in _log, Logger.level should be self.level, same for Logger.stream
- I don't see why LOG, DEBUG etc is defined only in the try:
History
Date User Action Args
2009-05-06 20:37:55tareksetrecipients: + tarek, christian.heimes, akitada, cavallo71
2009-05-06 20:37:55tareksetmessageid: <1241642275.05.0.399793131743.issue3992@psf.upfronthosting.co.za>
2009-05-06 20:37:53tareklinkissue3992 messages
2009-05-06 20:37:53tarekcreate