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"], + }, + ), + ), }