From 34a8311647406896bfc6445778c5c0359c5ea9cb Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 17 Aug 2019 20:00:57 +0200 Subject: [PATCH] remove annoying debugging line --- owrx/http.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/owrx/http.py b/owrx/http.py index ce96acc..189dd95 100644 --- a/owrx/http.py +++ b/owrx/http.py @@ -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: