0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

feat: add logger for BEC GUI server

This commit is contained in:
2024-06-17 09:01:06 +02:00
committed by wyzula_j
parent 7f7bef7581
commit 630616ec72
4 changed files with 22 additions and 15 deletions

View File

@ -30,7 +30,7 @@ def gui_id():
def plot_server(gui_id, klass, client_lib):
dispatcher = BECDispatcher(client=client_lib) # Has to init singleton with fixture client
process, output_thread = _start_plot_process(
gui_id, klass, client_lib._client._service_config.redis
gui_id, klass, client_lib._client._service_config.config_path
)
try:
while client_lib._client.connector.get(MessageEndpoints.gui_heartbeat(gui_id)) is None: