Skip to content
Snippets Groups Projects
Commit d9713610 authored by Ninjani's avatar Ninjani
Browse files

add error to log

parent a0544b4b
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ def processXMLFile(infile, args): ...@@ -97,7 +97,7 @@ def processXMLFile(infile, args):
except AssertionError as e: except AssertionError as e:
return [], [] return [], []
except Exception as e: except Exception as e:
ost.LogError("Couldn't load validation data for %s" % infile) ost.LogError("Couldn't load validation data for %s: %s" % (infile, str(e)))
return [], [] return [], []
pdbid = doc.getPDBId() pdbid = doc.getPDBId()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment