如何防止 Turbine 写入我的控制台?
这就是问题所在。 我正在尝试针对它编写一些单元测试,并希望禁用其日志记录,以便我可以更轻松地找到我的测试输出。 我尝试关闭所有我能想到的记录器(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用什么系统?
在 *nix 中,您可以通过管道到 /dev/null 来消除输出:
或者仅将错误管道到特定文件使用:
因此,1> 仅管道 stdout,2>管道 stderr,&> 管道一切。
或者,也许我不太清楚你在问什么?
What system are you using?
In *nix you can eliminate output by piping to /dev/null:
or to only pipe errors to a specific file use:
So, 1> pipes only stdout, 2> pipes stderr, &> pipes everything.
Or, maybe I don't know quite what you're asking?