1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-05-04 05:44:23 +02:00

WIP some log messages disabled

This commit is contained in:
2025-04-06 12:14:10 +02:00
parent 794104ac6a
commit 8c58cb265c
3 changed files with 8 additions and 7 deletions
+6 -5
View File
@@ -63,11 +63,12 @@ class LaunchWindow(BECWidget, QMainWindow):
)
# Set the window icon
# def list_app_hierarchy(self):
# """
# List the hierarchy of the application.
# """
# self.app.list_hierarchy()
# FIXME this do not work
def list_app_hierarchy(self):
"""
List the hierarchy of the application.
"""
self.app.list_hierarchy()
def _setup_menu_bar(self):
"""
-1
View File
@@ -446,7 +446,6 @@ class BECGuiClient(RPCBase):
Args:
server_registry (dict): The server registry
"""
logger.error("Updating dynamic namespace with server registry")
top_level_widgets: dict[str, RPCReference] = {}
for gui_id, state in server_registry.items():
widget = self._add_widget(state, self)
+2 -1
View File
@@ -191,7 +191,8 @@ class CLIServer:
for callback in self._registry_update_callbacks:
callback(registry_data)
logger.info(f"Broadcasting registry update: {registry_data} for {self.gui_id}")
# FIXME this message is bugged and it was even before mine refactor of parent logic
# logger.info(f"Broadcasting registry update: {registry_data} for {self.gui_id}")
self.client.connector.xadd(
MessageEndpoints.gui_registry_state(self.gui_id),
msg_dict={"data": messages.GUIRegistryStateMessage(state=registry_data)},