Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个将 xml 文件分发到网页的cherrypy 服务器。当我的服务器运行时,cherrypy 为每个被请求的网页提供日志,说明时间戳和 URL。对于典型的使用来说,这是一个相当不错的功能,但是当请求达到每秒 10 个请求时,日志可能会变得有点过多。特别是当我试图滚动它们以找到一些重要的调试信息时。当不必要的日志填满历史缓冲区删除调试信息时,它会变得更好。
这变得相当烦人。我希望有办法关闭它。
请参阅有关日志记录的 CherryPy 文档。
logger = cherrypy.log.access_log logger.removeHandler(logger.handlers[0])