We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3e27e5 commit cc52a84Copy full SHA for cc52a84
blast/src/org/labkey/blast/model/BlastJob.java
@@ -113,7 +113,7 @@ public void setParams(String params)
113
catch (JSONException e)
114
{
115
String containerPath = getContainer() == null || ContainerManager.getForId(getContainer()) == null ? "<MISSING: " + getContainer() + ">" : ContainerManager.getForId(getContainer()).getPath();
116
- _log.error("Unable to parse BlastJob config for: " + _objectid + " in container: " + containerPath + ", was: " + _params);
+ _log.error("Unable to parse BlastJob config for: " + _objectid + " in container: " + containerPath + ", was: " + params, e);
117
}
118
119
0 commit comments