提交 da1c74f6 编写于 作者: C christ66

Fix log message to report more verbose message.

上级 c3eb1cac
......@@ -755,7 +755,7 @@ public abstract class AbstractProject<P extends AbstractProject<P,R>,R extends A
try {
ta.addAll(Util.fixNull(tpaf.createFor(this))); // be defensive against null
} catch (Exception e) {
LOGGER.log(Level.SEVERE, "Error loading transient project action factory.");
LOGGER.log(Level.SEVERE, "Could not load actions from " + tpaf + " for " + this, e);
}
}
return ta;
......
......@@ -97,7 +97,7 @@ public abstract class Actionable extends AbstractModelObject implements ModelObj
try {
_actions.addAll(createFor(taf));
} catch (Exception e) {
LOGGER.log(Level.SEVERE, "Error loading action.", e);
LOGGER.log(Level.SEVERE, "Could not load actions from " + taf + " for " + this, e);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册