From 374f0898a923242797b3718c2e08698303c28212 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Mon, 15 Feb 2010 20:28:09 +0100 Subject: [PATCH] fix issue #15. patch provided by @lericson . Thanks! --- gunicorn/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/main.py b/gunicorn/main.py index ffc65336..47499c23 100644 --- a/gunicorn/main.py +++ b/gunicorn/main.py @@ -59,7 +59,7 @@ def configure_logging(opts): loglevel = LOG_LEVELS.get(opts.loglevel.lower(), logging.INFO) - logger = logging.getLogger() + logger = logging.getLogger('gunicorn') logger.setLevel(loglevel) for h in handlers: h.setFormatter(logging.Formatter("%(asctime)s - %(levelname)s %(message)s"))