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:
parent
152fa064ad
commit
721d018ad6
1 changed files with 2 additions and 2 deletions
|
@ -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': {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue