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.