Apache Ant:关闭特定任务的输出

发布于 2024-12-27 03:45:27 字数 215 浏览 1 评论 0原文

我有一个包含不同任务的构建文件。其中一些是内部任务,我可以控制生成的日志记录/输出的数量。

其他任务是我无法控制的库。它们没有提供控制输出量的方法。有一项非常琐碎的任务,我很乐意完全关闭该任务的输出。

我的问题是是否有办法关闭 ant 执行中的特定任务输出。或者 ant 是否提供了一种方法将此任务包装在另一个将 echo 设置为“关闭”或类似内容的任务中?

-赛姆

I have a build file that has different variety of tasks. Some of these are in-house tasks that I am able to control the amount of logging/output generated.

The other tasks are libraries that I have no control over. They do not provide a way to control the amount of output. There is one very trivial task and I am comfortable with turning off the output of the task all together.

My question is if there a way to turn off this specific tasks output in the ant execution. Or does ant provide a way to wrap this task in another task that has echo set to 'off' or something similar?

-Syam

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坠似风落 2025-01-03 03:45:27

Ant 没有内置功能来关闭特定任务的输出,但可以通过构建监听器实现。请参阅在没有 -q 标志的情况下让 ant 安静? 获取答案

Ant has no builtin feature to turn off output for specific task, but there are possibilities via buildlisteners. See Make ant quiet without the -q flag? for answers

笑梦风尘 2025-01-03 03:45:27

outputproperty="devnull"

它对我来说工作得很好,如果需要的话,你总是可以打印这个变量。

outputproperty="devnull"

It works fine for me and allways you can print this var if you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文