vote up 0 vote down star

Hi,

The app I'm working on uses a library that generates a lot of INFO level messages I don't want to log. But the rest of the app and libraries produce INFO level messages I need to log.

How can I setup log4net so that all INFO messages are logged except for one logger that need to log only at WARN or above ? All messages need to be logged in the same files.

Julien

flag

1 Answer

vote up 1 vote down check
<root>
  <level value="INFO" />
  <appender-ref ref="someappender" />
</root>
<logger name="AnotherLogger">
  <level value="WARN" />
</logger>
link|flag
I don't know how I have missed this, thought I tried it but I guess I didn't. Anyway, thanks a lot, that works. – Julien A Oct 6 at 10:56
Its always like that. Sometimes you look really hard and the obvious just alludes you. – Preet Sangha Oct 6 at 11:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.