summaryrefslogtreecommitdiff
path: root/mason/share/zuul-logging.conf
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-05-20 09:44:05 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2015-05-20 09:44:05 +0000
commit4b9268eb9cb1f8d140f543d9c4a3aa1aa8298994 (patch)
tree3e6c6e7fda3501b8af7aec03aff10e4e43130859 /mason/share/zuul-logging.conf
parentfab1f7a06fa8a5a6be1fabaec0e565802de498fc (diff)
downloaddefinitions-4b9268eb9cb1f8d140f543d9c4a3aa1aa8298994.tar.gz
Install configuration files in the correct place
Also, have a more sensible default layout.yaml.
Diffstat (limited to 'mason/share/zuul-logging.conf')
-rw-r--r--mason/share/zuul-logging.conf44
1 files changed, 0 insertions, 44 deletions
diff --git a/mason/share/zuul-logging.conf b/mason/share/zuul-logging.conf
deleted file mode 100644
index 8b76da26..00000000
--- a/mason/share/zuul-logging.conf
+++ /dev/null
@@ -1,44 +0,0 @@
-[loggers]
-keys=root,zuul,gerrit
-
-[handlers]
-keys=console,debug,normal
-
-[formatters]
-keys=simple
-
-[logger_root]
-level=WARNING
-handlers=console
-
-[logger_zuul]
-level=DEBUG
-handlers=debug,normal
-qualname=zuul
-
-[logger_gerrit]
-level=DEBUG
-handlers=debug,normal
-qualname=gerrit
-
-[handler_console]
-level=WARNING
-class=StreamHandler
-formatter=simple
-args=(sys.stdout,)
-
-[handler_debug]
-level=DEBUG
-class=logging.handlers.TimedRotatingFileHandler
-formatter=simple
-args=('/var/log/zuul/debug.log', 'midnight', 1, 30,)
-
-[handler_normal]
-level=INFO
-class=logging.handlers.TimedRotatingFileHandler
-formatter=simple
-args=('/var/log/zuul/zuul.log', 'midnight', 1, 30,)
-
-[formatter_simple]
-format=%(asctime)s %(levelname)s %(name)s: %(message)s
-datefmt=