Log4net 在发布模式下不记录
在调试模式下,Log4net 正在正确记录日志。在发布模式下它也可以正确记录。但问题是,在发布模式下,如果我从特定类之一(只有一个)登录,它不会记录(该类在调试模式下登录)。即使在发布模式下,其他类也可以使用相同的记录器正确记录日志。
这是配置,
<root>
<level value="INFO" />
</root>
<logger name="Japt">
<level value="DEBUG" />
<appender-ref ref="JaptAuditLogDbAppender" />
</logger>
我在调试和发布模式下使用相同的配置文件。
任何帮助将不胜感激。
In debug mode Log4net is logging properly. In Release mode also it Logs properly. But the problem is that, in release mode if I log from one of specific class(only one), it doesn't log(that class logs in debug mode). Other classes are logging properly even in release mode using the same logger.
Here is the Config
<root>
<level value="INFO" />
</root>
<logger name="Japt">
<level value="DEBUG" />
<appender-ref ref="JaptAuditLogDbAppender" />
</logger>
I am using the same config file for both debug and release mode.
Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果所讨论的类小而简单,则优化器可以将其转换为内联代码。
如果是这种情况,那么我认为你可以添加一个属性来显示内联,例如
If the class in question is small and simple, it could be converted into inline code by the optimizer.
If this is the case, then I think you can add an attribute to display the inlining, eg