mirror of
https://github.com/bec-project/bec_widgets.git
synced 2025-07-14 03:31:50 +02:00
WIP some log messages disabled
This commit is contained in:
@ -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):
|
||||
"""
|
||||
|
@ -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)
|
||||
|
@ -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)},
|
||||
|
Reference in New Issue
Block a user