Hi,
in my Pylons project I use ``markdown`` function
(http://webhelpers.groovie.org/modules/html/converters.html).
By default, markdown module enable log on DEBUG level.
When I execute my project I've many many DEBUG message in my console :
17:15:51,715 DEBUG [MARKDOWN] in markdown.markdown(), received text:
.....
how can I disable it ?
I try to append this code in config/environment.py
from logging import getLogger, WARN
logger = getLogger('MARKDOWN')
logger.setLevel(WARN)
but not success.
Thanks for your help.
Regards,
Stephane
--
Stephane Klein <[email protected]> - French
blog: http://stephane-klein.info
twitter: http://twitter.com/klein_stephane
pro: http://www.is-webdesign.com
--
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en.