从 Visual Studio 2010 的输出中删除第三方调试消息
我在项目中使用第三方库,它用自己的消息向输出控制台发送垃圾邮件。当我调试代码时,我绝对不想看到这些消息。有没有办法告诉VS不显示外部库消息而只显示我的消息?
I am using a third party library in a project and it spams the Output console with its own messages. I have absolutely no desire to see the messages when I'm debugging my code. Is there any way to tell VS to not display the outside libraries messages and only display mine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法过滤输出调试消息,但通常有方法告诉库不要将消息转储到输出调试窗口(编译时定义/运行时调用/外部配置工具,如 netsh.exe)。
You cannot filter the output debug messages, but in general there is way to tell the libraries not to dump messages to the output debug window (compile time define / runtime call / outer configuration tool like netsh.exe).