vote up 0 vote down star

In log4net I want to filter log messages by the value of the NDC like this:

  <filter type="log4net.Filter.PropertyFilter">
    <Key value="NDC" />
    <stringToMatch value="MyContext" />
  </filter>

Somehow the above filter is not working like I expected.

How do I have to configure a filter for my appender that will only match a certain NDC?

flag

1 Answer

vote up 0 vote down check

I just found the solution. I forgot to filter out the non matching events by adding the following line:

<filter type="log4net.Filter.DenyAllFilter" />
link|flag

Your Answer

Get an OpenID
or

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