diff --git a/gunicorn/workers/async.py b/gunicorn/workers/async.py index aec1a6bc..4f6127b8 100644 --- a/gunicorn/workers/async.py +++ b/gunicorn/workers/async.py @@ -46,7 +46,6 @@ class AsyncWorker(base.Worker): else: self.log.debug("Ignoring EPIPE") except Exception, e: - self.log.exception("General error processing request.") self.handle_error(client, e) finally: util.close(client) diff --git a/gunicorn/workers/sync.py b/gunicorn/workers/sync.py index cb283dbc..a9e66d56 100644 --- a/gunicorn/workers/sync.py +++ b/gunicorn/workers/sync.py @@ -76,7 +76,6 @@ class SyncWorker(base.Worker): else: self.log.debug("Ignoring EPIPE") except Exception, e: - self.log.exception("Error processing request.") self.handle_error(client, e) finally: util.close(client)