Ant将堆栈跟踪放在标准输出

时间:2015-06-04 21:52:17

标签: java logging ant stderr

我正在使用Ant,以及我自己创建的任务。 当这些自定义ant任务失败时,它们的输出将重定向到stdout。

我希望将它们重定向到stderr。

一个简单的完整通用Ant示例是:

<project name="test" default="init" basedir=".">

    <!-- Initialise project parameters -->
    <target name="init">
          <echo message="This is error message." level="error" />
    </target>
</project>

正确地向stderr输出“这是错误信息”,如下所示:

Buildfile: /home/jll/Downloads/loggingerror.xml

init:
     [echo] Something wrong here.
     **[echo] This is error message.**

BUILD SUCCESSFUL
Total time: 0 seconds

以粗体显示的行在Eclipse中显示为红色,表示它在错误标准输出中。

现在,当我运行自定义ant文件时:

<project name="test2" default="init" basedir=".">
    <taskdef resource="resource/customtasks.properties" />
    <target name="init" >

        <log
            scriptid="S4"
            message="Initialising Project Parameters."
            min="0"
            max="5"/>
    </target>
</project>

预计运行此操作会因NullPointerException而失败。

输出确实如预期所示:

Trying to override old definition of task import

init:
      [log] java.lang.NullPointerException
      .......
      [log]     at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:292)
      [log]     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [log]     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
      [log]     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
      [log]     at java.lang.reflect.Method.invoke(Method.java:606)
      [log]     at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
      [log]     at org.apache.tools.ant.Task.perform(Task.java:348)
      [log]     at org.apache.tools.ant.Target.execute(Target.java:435)
      [log]     at org.apache.tools.ant.Target.performTasks(Target.java:456)
      [log]     at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1393)
      [log]     at org.apache.tools.ant.Project.executeTarget(Project.java:1364)
      [log]     at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
      [log]     at org.apache.tools.ant.Project.executeTargets(Project.java:1248)
      [log]     at org.apache.tools.ant.Main.runBuild(Main.java:851)
      [log]     at org.apache.tools.ant.Main.startAnt(Main.java:235)
      [log]     at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
      [log]     at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)

BUILD SUCCESSFUL
Total time: 0 seconds

但在这种情况下,一切都进入了stdout。为什么呢?

我在自定义任务中抛出异常的Java代码非常简单:

@Override
public void execute() throws BuildException {
    try {
        stuff....
    }
    catch (Exception e) {
        throw new BuildException(e);
    }
}

我一直试图在我的java代码中摆弄 e.printStackTrace() logger.error(“message”,e),但到目前为止没有成功。即使要显示错误,行为也保持不变(发送到stdout的所有内容)。

什么方法可以看到我的堆栈跟踪显示,或者至少在stderr中显示某种错误消息?

由于

2 个答案:

答案 0 :(得分:2)

它认为不可能。

如果您没有太多类,最接近的解决方案是通过执行类似于描述的操作将每个类的输出重定向到文件(stderr) here.

但是他们也想重定向stdout,但你可以试试这个:

<java classname="some.package.Class" output="stderr.txt"> ... </java>

然而,这并没有真正指向stderr,但它已经接近了。

答案 1 :(得分:1)

您可以实现与Echo任务相同的代码

import java.io.IOException;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.util.ResourceUtils;
import org.apache.tools.ant.types.resources.LogOutputResource;
import org.apache.tools.ant.types.resources.StringResource;


public class MyLogTask extends Task {
    private String msg;

    public void execute() throws BuildException {
        try {
            ResourceUtils.copyResource(new StringResource(msg), new LogOutputResource(this, Project.MSG_ERR),
                                  null, null, false, false, true, null, null, getProject(), true);
        } catch (IOException ioe) {
            throw new BuildException(ioe, getLocation());
        }
    }

    public void setMessage(String msg) {
        this.msg = msg;
    }
}

然后消息转到stderr

<project default="main">

    <taskdef name="mylog" classname="MyLogTask"/>

    <target name="main">
        <echo message="ERROR" level="error" />
        <mylog message="hello"/>
    </target>

</project>

以下是测试:

/cygdrive/c/temp/ant>ant 
Buildfile: c:\temp\ant\build.xml

main:
     [echo] ERROR
    [mylog] hello

BUILD SUCCESSFUL
Total time: 0 seconds
/cygdrive/c/temp/ant>ant 2>err
Buildfile: c:\temp\ant\build.xml

main:

BUILD SUCCESSFUL
Total time: 0 seconds
/cygdrive/c/temp/ant>