Enable logging for fmn backend.

This commit is contained in:
Ralph Bean 2013-12-10 18:56:54 +00:00
parent 13330ad4eb
commit 3ae23a63c5

View file

@ -33,4 +33,15 @@ config = {
"fmn.acceptance_url": base + "confirm/accept/{secret}", "fmn.acceptance_url": base + "confirm/accept/{secret}",
"fmn.rejection_url": base + "confirm/reject/{secret}", "fmn.rejection_url": base + "confirm/reject/{secret}",
"fmn.support_email": "notifications@" + domain, "fmn.support_email": "notifications@" + domain,
# Generic stuff
"logging": dict(
loggers=dict(
fmn={
"level": "DEBUG",
"propagate": False,
"handlers": ["console"],
},
),
),
} }