如何不截断 bazel 输出中的 INFO 消息?
INFO:运行 bazel 时发出的消息将被截断为终端的大小。 如何指定 bazel 不截断 INFO 消息?
当我将输出重定向到文件时 - 当然它具有完整的信息。
当我手动更改终端大小时,它会截断为终端大小。设置终端大小的选项例如:export COLUMNS=500
或 stty rows 50 cols 132
似乎不起作用。
不管怎样,我需要一个 bazel 选项,而不是寻找解决方法。
The INFO: messages emitted when running bazel are truncated to size of the terminal.
How can I specify bazel not to truncate INFO messages?
When I redirect the output to a file - of course it has the complete info.
When I change the terminal size manually, it truncates to the terminal size. The options to set the terminal size ex: export COLUMNS=500
or stty rows 50 cols 132
doesn't seem to work.
Either way I need a bazel option and not looking for workarounds.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个快速的解决方案是 bazel .... |&三通/dev/null
A quick solution is to
bazel .... |& tee /dev/null