Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I remove / inspect / modify handlers configured for my loggers using the fileConfig() function?

For removing there is Logger.removeHandler(hdlr) method, but how do I get the handler in first place if it was configured from file?

share|improve this question

1 Answer

up vote 4 down vote accepted

logger.handlers contains a list with all handlers of a logger.

share|improve this answer
1  
This is not documented. Is it safe to use it? – Manish Apr 24 '12 at 19:33
1  
@Manish: Looking at the code, I would say it is safe to use, as long as you don't do multithreading. The handler list is a shared resource protected by a Lock and the list only contains references to the handlers. Don't use it, if you do multithreading. – Enno Gröper Feb 9 at 11:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.