diff --git a/THANKS b/THANKS index d32d1bbf8..6fb97720e 100644 --- a/THANKS +++ b/THANKS @@ -158,3 +158,4 @@ Kyle Mulka Marc Abramowitz Hebert J Kevin Littlejohn +Wolfgang Schnerring diff --git a/gunicorn/workers/base.py b/gunicorn/workers/base.py index 0b8cc115c..9ba8e7568 100644 --- a/gunicorn/workers/base.py +++ b/gunicorn/workers/base.py @@ -210,7 +210,7 @@ def handle_error(self, req, client, addr, exc): msg = "Invalid request from ip={ip}: {error}" self.log.debug(msg.format(ip=addr[0], error=str(exc))) else: - self.log.exception("Error handling request") + self.log.exception("Error handling request %s", req.uri) status_int = 500 reason = "Internal Server Error"