Revert "Have FMN use the INFO log level instead of DEBUG. This isn\'t necessary anymore."

This reverts commit cc27e7b747.
This commit is contained in:
Ralph Bean 2015-05-08 18:48:37 +00:00
parent 3575bcf0c0
commit 85c5a7061e

View file

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