Trace.WriteLine 不产生任何输出
我遇到了一个奇怪的问题 Trace.WriteLine 不产生任何输出。我已经跟踪了代码,Trace.Writeline 肯定被调用,但输出窗口或 SysInternals 的 DebugView 中没有出现任何输出。
我的系统有问题吗?我该如何修复这个问题?
I'm having an odd problem With Trace.WriteLine not producing any output. I've traced the code and Trace.Writeline is definitely getting called, but no output is appearing in the Output window or in SysInternals' DebugView.
Is something wrong with my system? How can I repair this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Visual Studio 中的一个设置可能会导致跟踪/调试输出最终出现在不同的窗口中。为确保安全,请选择
Tools |选项... |调试
并确保标记为将所有输出窗口文本重定向到立即窗口的复选框未选中。There's a setting in Visual Studio that can cause trace/debug output to end up in a different window. To be sure, choose
Tools | Options... | Debugging
and make sure the check-box labeled Redirect all Output Window text to the Immediate Window is unchecked.确保 TraceListener 中有适当的 Trace.Listeners 集合。
Make sure there is an appropriate TraceListener in the Trace.Listeners collection.