Skip to content
Snippets Groups Projects

Introduced log file option

Merged Adham Hashibon requested to merge add-logging-file into master
3 files
+ 3
4
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -94,7 +94,7 @@ class WorkflowReader(HasStrictTraits):
wf.notification_listeners[:] = \
self._extract_notification_listeners(wf_data)
except KeyError as e:
log.exception("Could not read file {}".format(file))
log.error("Could not read file {}".format(file), exc_info=True)
raise InvalidFileException("Could not read file {}. "
"Unable to find key {}".format(file, e))
return wf
Loading