From 2bd8131f07f55fa160089b05e5e6e5e8cdbbbf70 Mon Sep 17 00:00:00 2001 From: "R. Keoni Garcia" <keoni@tauriel.ssec.wisc.edu> Date: Tue, 3 Nov 2015 17:49:54 -0600 Subject: [PATCH] more concise progress log message on load, prior to backgrounding imports --- py/cspov/workspace/workspace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/cspov/workspace/workspace.py b/py/cspov/workspace/workspace.py index 8feab1bd..2be6c362 100644 --- a/py/cspov/workspace/workspace.py +++ b/py/cspov/workspace/workspace.py @@ -431,7 +431,7 @@ class Workspace(QObject): if update.data is not None: info = self._info[uuid] = update.dataset_info 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 self._data[uuid] = data = self._convert_to_memmap(str(uuid), data) if allow_cache: -- GitLab