remove annoying debugging line

This commit is contained in:
Jakob Ketterl 2019-08-17 20:00:57 +02:00
parent cf45caa762
commit 34a8311647

View File

@ -64,9 +64,6 @@ class Router(object):
if res is not None:
(controller, matches) = res
query = parse_qs(url.query)
logger.debug(
"path: {0}, controller: {1}, query: {2}, matches: {3}".format(handler.path, controller, query, matches)
)
request = Request(query, matches)
controller(handler, request).handle_request()
else: