mirror of
https://github.com/tiennm99/serena.git
synced 2026-09-04 10:17:05 +00:00
Disable GUI by default (again)
See https://github.com/oraios/serena/issues/39
This commit is contained in:
@@ -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
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user