James E. Blair a2ec7d6478 Switch Zuul geard logging to DEBUG level
To try to understand more about what would cause a zuul-geard
disconnect.  Only keep 3 days of logs because they are BIG.

Change-Id: Iba9a8a9c21d82ab4e3323db8c561f8de8c18864f
2014-02-21 08:38:29 -08:00

34 lines
514 B
Plaintext

[loggers]
keys=root,gear
[handlers]
keys=console,normal
[formatters]
keys=simple
[logger_root]
level=WARNING
handlers=console
[logger_gear]
level=DEBUG
handlers=normal
qualname=gear
[handler_console]
level=WARNING
class=StreamHandler
formatter=simple
args=(sys.stdout,)
[handler_normal]
level=INFO
class=logging.handlers.TimedRotatingFileHandler
formatter=simple
args=('/var/log/zuul/gearman-server.log', 'midnight', 1, 3,)
[formatter_simple]
format=%(asctime)s %(levelname)s %(name)s: %(message)s
datefmt=