Log4net fails silently by design. Good. I don't want it taking down my app.
Is there a way to set up a notification when Log4net crashes and stops logging?
Is there some kind of event handler that I can hook into which will tell me that Log4net has gone silent?
I want to know when this happens so I can recycle the app pool as soon as possible.
Thanks!
If I'm understanding you correctly, you would like log4net to signal you when an appender fails. If we look at the logging code for the Logger implementation we see that the only point that takes into account the appenders failing is the internal logging mechanism:
Of course this occurs only if the appender throws an exception. The
LogLog
component then forwards the message to the Console and Trace components:So, by listening messages coming from the trace you can get an idea of what happens in your appenders. To turn this into an event you can add a trace listener that triggers in some specific cases: you can take a look at what is in this answer regarding custom trace listeners in order to trigger an event from one.