Commit 3c2d1003 by Ned Batchelder

Suppress request logging in the LTI test server.

parent 9cd0771f
......@@ -13,6 +13,10 @@ class MockLTIRequestHandler(BaseHTTPRequestHandler):
protocol = "HTTP/1.0"
def log_request(self, *args, **kwargs):
"""Don't log requests, this is just test code."""
pass
def do_HEAD(self):
self._send_head()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment