Skip to content Skip to sidebar Skip to footer

Silencing Cherrypy

I have a cherrypy server distributing xml files to webpages. While my server runs, cherrypy offers logs for each webpage that has been requested stating the timestamp and url. This

Solution 1:

See CherryPy docs on logging.

logger = cherrypy.log.access_log
logger.removeHandler(logger.handlers[0])

Post a Comment for "Silencing Cherrypy"