From 613437961eddba2e36d02667eb3ca5684554291c Mon Sep 17 00:00:00 2001 From: benoitc Date: Mon, 20 Feb 2012 19:53:18 +0100 Subject: [PATCH] remove spurious print shouldn't have been here. --- gunicorn/glogging.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gunicorn/glogging.py b/gunicorn/glogging.py index 07596c02..6685866f 100644 --- a/gunicorn/glogging.py +++ b/gunicorn/glogging.py @@ -157,9 +157,6 @@ class Logger(object): atoms.update(dict([(k,v) for k, v in environ.items() \ if k.startswith('HTTP_')])) - # add Response headers - print resp.headers - for k, v in atoms.items(): atoms[k] = v.replace('"', '\\"')