If I have log4net configured as below
<root>
<level value="INFO" />
<appender-ref ref="RollingFileAppender" />
</root>
<logger name="MyNamespace.MyClass">
<level value="INFO" />
<appender-ref ref="AdoNetAppender" />
</logger>
I would like the output from the named class to end up only in the sql database (via the adoNetAppender) and not in both the sql database and the log file (via the rollingfileappender).
Is there a way of achieving that?