From 3a09f05a61c47854e60749554c8285e09cf7dbb6 Mon Sep 17 00:00:00 2001 From: micheal Date: Sat, 28 Jan 2023 16:02:30 -1100 Subject: [PATCH] fix error log bug. --- code/default/launcher/web_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/default/launcher/web_control.py b/code/default/launcher/web_control.py index 0b27341f24..14778a0675 100644 --- a/code/default/launcher/web_control.py +++ b/code/default/launcher/web_control.py @@ -211,7 +211,7 @@ def do_GET(self): xlog.debug('launcher web_control %s %s %s ', self.address_string(), self.command, self.path) if url_path == '/config': self.req_config_handler() - if url_path == "/log": + elif url_path == "/log": return self.req_log_handler() elif url_path == '/update': self.req_update_handler()