pagure-dist-git: more config to quash info/debug output on https push

We also have fedora-messaging spewing out on pushes, so lets set that
back to warning, and we also need to change the default pagure logging
root to WARN.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2023-01-17 12:54:16 -08:00
parent 0863d2c8a9
commit 88596cb852
2 changed files with 15 additions and 1 deletions

View file

@ -19,3 +19,17 @@ certfile = "/etc/pki/rabbitmq/pagurecert/src.fp.o.crt"
[client_properties]
app = "src.fp.o"
[log_config.loggers.fedora_messaging]
level = "WARNING"
propagate = false
handlers = ["console"]
[log_config.loggers.twisted]
level = "WARNING"
propagate = false
handlers = ["console"]
[log_config.loggers.pika]
level = "WARNING"
propagate = false
handlers = ["console"]

View file

@ -188,7 +188,7 @@ LOGGING = {
# The root logger configuration; this is a catch-all configuration
# that applies to all log messages not handled by a different logger
'root': {
'level': 'INFO',
'level': 'WARN',
'handlers': ['console', 'email'],
},
'loggers': {