0

我有一个运行我们的 TestNG 测试的 Ant 脚本,控制台输出的数量令人难以置信,我们的 jenkins 作业控制台日志超过了 1 GB。日志中有很多 DEBUG 输出,我将 log4j 设置为仅记录 INFO,所以我不确定所有其他输入来自哪里。关于如何减少控制台输出量的任何想法?这是我不关心的一些输出的示例:

[testng] 15:45:03.746 [main] DEBUG org.apache.cxf.endpoint.ClientImpl - Interceptors contributed by databinding: []
[testng] 15:45:03.750 [main] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.ws.policy.PolicyOutInterceptor@6279f936 to phase setup
[testng] 15:45:03.750 [main] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.interceptor.MessageSenderInterceptor@35d87abc to phase prepare-send
[testng] 15:45:03.750 [main] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.jaxws.interceptors.SwAOutInterceptor@1761e842 to phase pre-logical
[testng] 15:45:03.750 [main] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.jaxws.interceptors.WrapperClassOutInterceptor@1cd7510c to phase pre-logical
[testng] 15:45:03.750 [main] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.jaxws.interceptors.HolderOutInterceptor@7c09f99e to phase pre-logical
4

1 回答 1

0

检查是否使用任何-dor-v选项调用了 ant 脚本。如果是,您想删除它们。

-v启用详细输出,同时-d启用调试(甚至更详细)输出。

于 2013-11-05T21:06:57.117 回答