From 85c5a7061eb3be054e3b8dda05a309c727fd7c88 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Fri, 8 May 2015 18:48:37 +0000 Subject: [PATCH] Revert "Have FMN use the INFO log level instead of DEBUG. This isn\'t necessary anymore." This reverts commit cc27e7b7476c87fcb85e62f9eac2a4ff9f5d5a1e. --- roles/notifs/backend/templates/fmn.consumer.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/roles/notifs/backend/templates/fmn.consumer.py b/roles/notifs/backend/templates/fmn.consumer.py index f1175da4d2..59c041bc61 100644 --- a/roles/notifs/backend/templates/fmn.consumer.py +++ b/roles/notifs/backend/templates/fmn.consumer.py @@ -151,4 +151,15 @@ config = { "fmn.acceptance_url": base + "confirm/accept/{secret}", "fmn.rejection_url": base + "confirm/reject/{secret}", "fmn.support_email": "notifications@" + domain, + + # Generic stuff + "logging": dict( + loggers=dict( + fmn={ + "level": "DEBUG", + "propagate": False, + "handlers": ["console", "mailer"], + }, + ), + ), }