提交 86f6a4f9 编写于 作者: A abayer

Improving logging for debugging HUDSON-3273

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@23288 71c3de6d-444a-0410-be80-ed276b4c234a
上级 2530da68
......@@ -503,10 +503,10 @@ public class MavenModuleSetBuild extends AbstractMavenBuild<MavenModuleSet,Maven
listener.error(e.getMessage());
return Result.FAILURE;
} catch (InterruptedIOException e) {
listener.error("Aborted");
e.printStackTrace(listener.error("Aborted Maven execution for InterruptedIOException"));
return Result.ABORTED;
} catch (InterruptedException e) {
listener.error("Aborted");
e.printStackTrace(listener.error("Aborted Maven execution for InterruptedException"));
return Result.ABORTED;
} catch (IOException e) {
e.printStackTrace(listener.error(Messages.MavenModuleSetBuild_FailedToParsePom()));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册