Skip to content

Commit

Permalink
More logging
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Jun 26, 2023
1 parent f6830f9 commit 5e6e455
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ovos_gui/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,7 @@ def handle_receive_gui_pages(self, message: Message):
may additionally be mounted to a host path/volume in container setups.
@param message: Message containing UI resource file contents and meta
"""
LOG.debug(f"Received GUI pages from: {message.data['__from']}")
for page, contents in message.data["pages"]:
res_id = self._get_res_id_from_message(message, page)
self.gui_files[res_id] = contents
Expand Down Expand Up @@ -838,6 +839,7 @@ def handle_client_connected(self, message: Message):
if not self._ready_event.wait(90):
LOG.warning("Not reported ready after 90s")
# TODO: Refactor to handle other frameworks
LOG.info("Requesting GUI pages for qt5")
self.core_bus.emit(Message("gui.request_page_upload",
{'framework': 'qt5'},
{"source": "gui",
Expand Down

0 comments on commit 5e6e455

Please sign in to comment.