当时可以使用StackTrace吗? 在 web.config 中?
我知道我以编程方式检查它,因为
ConfigurationSection configSection =
(CompilationSection) ConfigurationManager.GetSection( "system.web/compilation" );
我知道它在生产中也有点慢......但如果我们处于某种测试阶段,它还没有造成伤害......
I know I check it programmatically from
ConfigurationSection configSection =
(CompilationSection) ConfigurationManager.GetSection( "system.web/compilation" );
I know that it is also somewhat slower to have in production ... yet if we are in a kind of beta it does not harm yet ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它在调试和发布版本中都可用,但如果您的 PDB 处于调试模式,它将包含更多数据(例如源行号)。
Yes, it's available both in Debug and Release builds but it'll include more data (such as source line numbers) if you have the PDB in debug mode.