Currently reviewing the log4net configs we have and found our eventlog appender like so:
<appender name="EventLog" type="log4net.Appender.EventLogAppender">
<fix value="None" /> <!-- performance boost -->
[... etc ...]
</appender>
However, the only reference to this "fix" property I can find is from this discussion about the BufferingForwardingEventHandler
where setting the value to "None" is shown to yield performance improvements.
Also the docs on EventLogAppender do not list such a property, like the docs on BufferingForwardingEventHandler.
So is this property simply meaningless for the EventLogAppender
or does it serve some potentially undocumented function here as well?