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:
logger = cherrypy.log.access_log
logger.removeHandler(logger.handlers[0])
Post a Comment for "Silencing Cherrypy"