From f3901dfec24c97a27ef38693f792d2b1d9689ba6 Mon Sep 17 00:00:00 2001 From: Michael Panchenko Date: Sat, 14 Jun 2025 00:01:10 +0200 Subject: [PATCH] Fix: trace_lsp_communication in yaml was ignored --- src/serena/agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/serena/agent.py b/src/serena/agent.py index 0584ec4..db300c5 100644 --- a/src/serena/agent.py +++ b/src/serena/agent.py @@ -377,6 +377,7 @@ class SerenaConfig(SerenaConfigBase): instance.log_level = loaded_commented_yaml.get("log_level", loaded_commented_yaml.get("gui_log_level", logging.INFO)) instance.web_dashboard = loaded_commented_yaml.get("web_dashboard", True) instance.tool_timeout = loaded_commented_yaml.get("tool_timeout", DEFAULT_TOOL_TIMEOUT) + instance.trace_lsp_communication = loaded_commented_yaml.get("trace_lsp_communication", False) # re-save the configuration file if any migrations were performed if num_project_migrations > 0: