From 02b866f08a7f847cdd7f27975010a6f47d191f76 Mon Sep 17 00:00:00 2001 From: benoitc Date: Wed, 6 Nov 2013 08:02:12 +0100 Subject: [PATCH] don't spam the console SIGWINCH could happen often in the console when the terminal is resized. Since the error is harmless just display it when the logging level is debug. fix #449 --- gunicorn/arbiter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/arbiter.py b/gunicorn/arbiter.py index b48e5b7c..aaec3187 100644 --- a/gunicorn/arbiter.py +++ b/gunicorn/arbiter.py @@ -281,7 +281,7 @@ class Arbiter(object): self.num_workers = 0 self.kill_workers(signal.SIGQUIT) else: - self.log.info("SIGWINCH ignored. Not daemonized") + self.log.debug("SIGWINCH ignored. Not daemonized") def wakeup(self): """\