Skip to content

Commit

Permalink
Seperate logging lines
Browse files Browse the repository at this point in the history
Refs #10778
  • Loading branch information
DanNixon committed Jan 22, 2015
1 parent a188d83 commit d43afe3
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -139,7 +139,8 @@ def PyExec(self):
raise RuntimeError('Unrecognised file format: %s' % ext)

except Exception as ex:
logger.error('Error parsing file %s, error is: %s' % (self._sam_path, str(ex)))
logger.error('Error parsing file %s' % (self._sam_path))
logger.debug('Error is: %s' % (str(ex)))

# Do processing specific to workspaces in energy
if isinstance(mtd[self._out_ws], WorkspaceGroup):
Expand Down

0 comments on commit d43afe3

Please sign in to comment.