Possible to set up Log4net Notification When it Crashes?

637 Views Asked by At

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!

1

There are 1 best solutions below

1
On BEST ANSWER

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:

// log4net.Repository.Hierarchy.Logger
public virtual void Log(Type callerStackBoundaryDeclaringType, Level level, object message, Exception exception)
{
    try
    {
        if (this.IsEnabledFor(level))
        {
            this.ForcedLog((callerStackBoundaryDeclaringType != null) ? callerStackBoundaryDeclaringType : Logger.ThisDeclaringType, level, message, exception);
        }
    }
    catch (Exception exception2)
    {
        LogLog.Error("Log: Exception while logging", exception2);
    }
    catch
    {
        LogLog.Error("Log: Exception while logging");
    }
}

Of course this occurs only if the appender throws an exception. The LogLog component then forwards the message to the Console and Trace components:

// log4net.Util.LogLog
private static void EmitErrorLine(string message)
{
    try
    {
        Console.Error.WriteLine(message);
        Trace.WriteLine(message);
    }
    catch
    {
    }
}

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.