Disable GUI by default (again)

See https://github.com/oraios/serena/issues/39
This commit is contained in:
Michael Panchenko
2025-04-08 14:19:50 +02:00
parent 04012486ed
commit 787d158460
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ projects:
#
# Limitations: doesn't seem to work with the community version of Claude Desktop for Linux
# Might also cause problems with some MCP clients - if you have any issues, try disabling this
gui_log_window: True
gui_log_window: False
# minimum log level for the GUI log window (10 = debug, 20 = info, 30 = warning, 40 = error)
gui_log_level: 20
+1 -1
View File
@@ -125,7 +125,7 @@ class SerenaConfig:
self.projects[project_config.project_name] = project_config
self.project_names = list(self.projects.keys())
self.gui_log_window_enabled = config_yaml.get("gui_log_window", True)
self.gui_log_window_enabled = config_yaml.get("gui_log_window", False)
self.gui_log_window_level = config_yaml.get("gui_log_level", logging.INFO)
self.enable_project_activation = config_yaml.get("enable_project_activation", True)