如何防止 Turbine 写入我的控制台?

发布于 2024-07-25 15:04:20 字数 99 浏览 5 评论 0原文

这就是问题所在。 我正在尝试针对它编写一些单元测试,并希望禁用其日志记录,以便我可以更轻松地找到我的测试输出。 我尝试关闭所有我能想到的记录器(log4j),它不断写入我的控制台。

That's the question. I'm trying to write some unit tests against it and want to disable its logging so I can more easily find my test output. I tried turning off everything I could think of with the logger (log4j), and it keeps writing to my console.

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

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

发布评论

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

评论(1

猫弦 2024-08-01 15:04:20

您使用什么系统?

在 *nix 中,您可以通过管道到 /dev/null 来消除输出:

turbine &> /dev/null

或者仅将错误管道到特定文件使用:

turbine 2> turbineOutput

因此,1> 仅管道 stdout,2>管道 stderr,&> 管道一切。

或者,也许我不太清楚你在问什么?

What system are you using?

In *nix you can eliminate output by piping to /dev/null:

turbine &> /dev/null

or to only pipe errors to a specific file use:

turbine 2> turbineOutput

So, 1> pipes only stdout, 2> pipes stderr, &> pipes everything.

Or, maybe I don't know quite what you're asking?

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