Skip to content
Snippets Groups Projects
Commit 2bd8131f authored by R. Keoni Garcia's avatar R. Keoni Garcia
Browse files

more concise progress log message on load, prior to backgrounding imports

parent 4f48ca7e
No related branches found
No related tags found
No related merge requests found
...@@ -431,7 +431,7 @@ class Workspace(QObject): ...@@ -431,7 +431,7 @@ class Workspace(QObject):
if update.data is not None: if update.data is not None:
info = self._info[uuid] = update.dataset_info info = self._info[uuid] = update.dataset_info
data = self._data[uuid] = update.data data = self._data[uuid] = update.data
LOG.debug(repr(update)) LOG.info("{} {}: {:.01f}%".format(update.dataset_info[INFO.NAME], update.stage_desc, update.completion*100.0))
# copy the data into an anonymous memmap # copy the data into an anonymous memmap
self._data[uuid] = data = self._convert_to_memmap(str(uuid), data) self._data[uuid] = data = self._convert_to_memmap(str(uuid), data)
if allow_cache: if allow_cache:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment