Include request URL in error message.

Fixes #1061.
This commit is contained in:
Wolfgang Schnerring 2015-07-08 10:18:26 +02:00
parent 1864a3c779
commit 79011d0c4a
Failed to extract signature
2 changed files with 2 additions and 1 deletions

1
THANKS
View File

@ -158,3 +158,4 @@ Kyle Mulka <repalviglator@yahoo.com>
Marc Abramowitz <msabramo@gmail.com>
Hebert J <hebert@mail.ru>
Kevin Littlejohn <kevin@littlejohn.id.au>
Wolfgang Schnerring <wosc@wosc.de>

View File

@ -210,7 +210,7 @@ class Worker(object):
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"