pagure-dist-git: stop spewing INFO/DEBUG on https pushes

Right now when someone does a https push they get about 100 lines of
INFO and DEBUG from pagure. Everything from acls to messaging to pika to
everything. There's no need for all this debug/info spew.
Lets disable it and go back to just WARNINGS

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2023-01-17 12:33:45 -08:00
parent 152fa064ad
commit 721d018ad6

View file

@ -194,12 +194,12 @@ LOGGING = {
'loggers': {
'pagure': {
'handlers': ['console'],
'level': 'DEBUG',
'level': 'WARN',
'propagate': True
},
'flask': {
'handlers': ['console'],
'level': 'INFO',
'level': 'WARN',
'propagate': False
},
'sqlalchemy': {