From b60b759a36cb247d8233e48c8d39aa8b203c1ac5 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Fri, 12 Jul 2013 16:28:58 +0200 Subject: [PATCH] Use extra parameter instead of formatted line in logger --- radicale/log.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/log.py b/radicale/log.py index 7a49a4e2..bbed5e82 100644 --- a/radicale/log.py +++ b/radicale/log.py @@ -55,5 +55,5 @@ def start(): if debug: LOGGER.setLevel(logging.DEBUG) LOGGER.debug( - "Logging configuration file '%s' not found, using stdout." % - filename) + "Logging configuration file '%s' not found, using stdout.", + extra=filename)