From b341ae9aee9a6448c518ef5bdc91efe8a385beed Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 3 Apr 2017 17:50:13 -0700 Subject: [PATCH] Fix missing \n --- disco/util/logging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/disco/util/logging.py b/disco/util/logging.py index 68af8a8..75e9229 100644 --- a/disco/util/logging.py +++ b/disco/util/logging.py @@ -9,6 +9,7 @@ LEVEL_OVERRIDES = { LOG_FORMAT = '[%(levelname)s] %(asctime)s - %(name)s:%(lineno)d - %(message)s' + def setup_logging(**kwargs): kwargs.setdefault('format', LOG_FORMAT)