From c9d85e5c8e120091f74bb54e22f0456f7c2bb895 Mon Sep 17 00:00:00 2001 From: Roland Hedberg Date: Mon, 29 Jul 2013 09:48:11 +0200 Subject: [PATCH] Added another log handler --- src/saml2/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/saml2/config.py b/src/saml2/config.py index 0ee5294..ea7f855 100644 --- a/src/saml2/config.py +++ b/src/saml2/config.py @@ -126,6 +126,7 @@ LOG_HANDLER = { "rotating": logging.handlers.RotatingFileHandler, "syslog": logging.handlers.SysLogHandler, "timerotate": logging.handlers.TimedRotatingFileHandler, + "memory": logging.handlers.MemoryHandler, } LOG_FORMAT = "%(asctime)s %(name)s:%(levelname)s %(message)s"