Configure cherrypy logging

Now that zuul-web runs with cherrypy we need to update our logging to
include cherrypy logs. We start by only including errors for now.

This is based on the config details at:
https://docs.cherrypy.org/en/latest/basics.html#play-along-with-your-other-loggers

Change-Id: I870da2272f8cfe5ed0a862e5ac6aa1920ddaa2f7
This commit is contained in:
Clark Boylan 2018-06-04 12:46:55 -07:00 committed by James E. Blair
parent 8e006bcab5
commit 7f61fc38b0
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,5 @@
[loggers]
keys=root,zuul,gerrit,gear
keys=root,zuul,gerrit,gear,cherrypy
[handlers]
keys=console,debug,normal
@ -21,6 +21,11 @@ level=INFO
handlers=debug,normal
qualname=gerrit
[logger_cherrypy]
level=WARN
handlers=debug,normal
qualname=cherrypy
[logger_gear]
level=WARNING
handlers=debug,normal