[issue6633] No handlers could be found for logger

2009-08-05 Thread James
James added the comment: very well, i didn't notice the http://docs.python.org/library/logging.html#configuring-logging-for-a-library and i thank you for your time and efforts! cheers, _J -- ___ Python tracker ___

[issue6633] No handlers could be found for logger

2009-08-05 Thread Vinay Sajip
Vinay Sajip added the comment: 1) It's not appropriate to document NullHandler at the point you describe, as that's the API for Handlers. However, it is documented at http://docs.python.org/library/logging.html#configuring-logging-for-a-library I will check that NullHandler is added to documen

[issue6633] No handlers could be found for logger

2009-08-04 Thread Amaury Forgeot d'Arc
Changes by Amaury Forgeot d'Arc : -- assignee: -> vsajip nosy: +vsajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue6633] No handlers could be found for logger

2009-08-03 Thread James
New submission from James : I was trying to suppress the error message as shown in the title, when I found out (by searching through the source) that there is a NullHandler for precisely this purpose. http://svn.python.org/view/python/trunk/Lib/logging/__init__.py?r1=66211&r2=67511 do you think