From 264b65d30c092ba5ae13b28df3402b90ae583b64 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 20 Oct 2015 15:52:28 -0400 Subject: Add incoming requests to debug log Signed-off-by: Simo Sorce Reviewed-by: Christian Heimes --- custodia/httpd/server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/custodia/httpd/server.py b/custodia/httpd/server.py index 24ac71b..c1df0cb 100644 --- a/custodia/httpd/server.py +++ b/custodia/httpd/server.py @@ -245,6 +245,7 @@ class HTTPRequestHandler(BaseHTTPRequestHandler): 'version': self.request_version, 'headers': self.headers, 'body': self.body} + logger.debug("REQUEST: %r", request) try: response = self.pipeline(self.server.config, request) if response is None: -- cgit