From 786c97442d0a890af9461810899009ed89ec80af Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Sun, 10 Jan 2010 20:27:37 +0100 Subject: [PATCH] useless info --- gunicorn/arbiter.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gunicorn/arbiter.py b/gunicorn/arbiter.py index 310b19c0..0657ac67 100644 --- a/gunicorn/arbiter.py +++ b/gunicorn/arbiter.py @@ -259,15 +259,12 @@ class Arbiter(object): wpid, status = os.waitpid(-1, os.WNOHANG) if not wpid: break if self.reexec_pid == wpid: - log.error("reaped %s" % str(status)) self.reexec_pid = 0 else: worker = self.WORKERS.pop(wpid, None) if not worker: continue worker.tmp.close() - log.info("repead %s \nworker %s" % (str(status), - str(worker.id))) except OSError, e: if e.errno == errno.ECHILD: pass