From 798c1e0f5e237d7a4bd18e297720886514fca870 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 24 Feb 2014 20:00:19 +0000 Subject: [PATCH] Use that fedmsg error mailer elsewhere. --- roles/notifs-backend/templates/fmn.consumer.py | 2 +- roles/summershum/templates/summershum.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/notifs-backend/templates/fmn.consumer.py b/roles/notifs-backend/templates/fmn.consumer.py index cf69c2d8d3..957918af07 100644 --- a/roles/notifs-backend/templates/fmn.consumer.py +++ b/roles/notifs-backend/templates/fmn.consumer.py @@ -67,7 +67,7 @@ config = { fmn={ "level": "DEBUG", "propagate": False, - "handlers": ["console"], + "handlers": ["console", "mailer"], }, ), ), diff --git a/roles/summershum/templates/summershum.py b/roles/summershum/templates/summershum.py index 716e10b965..bd41abefe1 100644 --- a/roles/summershum/templates/summershum.py +++ b/roles/summershum/templates/summershum.py @@ -8,7 +8,7 @@ config = { 'logging': { 'loggers': { 'summershum': { - 'handlers': ['console'], + 'handlers': ['console', 'mailer'], 'level': 'DEBUG', 'propagate': False },