From 9d740a7db9d500e86824567d39a424562497ab75 Mon Sep 17 00:00:00 2001 From: jeffser Date: Mon, 2 Sep 2024 16:18:23 -0600 Subject: [PATCH] Modified logging --- src/connection_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection_handler.py b/src/connection_handler.py index 967d847..b874f76 100644 --- a/src/connection_handler.py +++ b/src/connection_handler.py @@ -55,7 +55,7 @@ class instance(): if not self.instance: self.start() connection_url = '{}/{}'.format(self.remote_url if self.remote else 'http://127.0.0.1:{}'.format(self.local_port), connection_url) - logger.info('{} : {} : {}'.format(connection_type, connection_url, data)) + logger.info('{} : {}'.format(connection_type, connection_url)) response = None match connection_type: case "GET":