vote up 3 vote down star

I have wrapped Log4net in a static wrapper and want to log

loggingEvent.LocationInformation.MethodName
loggingEvent.LocationInformation.ClassName

However all i get is the name of my wrapper.

How can i Log that info using a forwardingappender and a static wrapper class like

Logger.Debug("Logging to Debug");
Logger.Info("Logging to Info");
Logger.Warn("Logging to Warn");
Logger.Error(ex);
Logger.Fatal(ex);
flag

75% accept rate
If I remember well, log4net populates the LocationInformation from the Type you are passing to the LogManager.GetLogger(Type) call, so it is reasonable that presents the info from your wrapper (I am assuming that your wrapper does this: ILog log = LogManager.GetLogger(typeof(MyLogWrapper)). – Panos Oct 1 '08 at 13:37
Actually i wrap it like LoggerManager.GetLogger(Assembly.GetCallingAssembly(),"MyDefaultLoggger"), in order to avoid it – Claus Thomsen Oct 1 '08 at 14:02

3 Answers

vote up 1 vote down check

Well the error was somewhere in my appender but for completeness ill include the answer to the best of my knowledge:

the Facade you need should wrap ILogger and NOT ILog

 public static class Logger
 {
    private readonly static Type ThisDeclaringType = typeof(Logger);
    private static readonly ILogger defaultLogger;

    static Logger()
    {
      defaultLogger =
        LoggerManager.GetLogger(Assembly.GetCallingAssembly(),"MyDefaultLoggger");

...

    public static void Info(string message)
    {
        if (defaultLogger.IsEnabledFor(infoLevel))
        {
            defaultLogger.Log(typeof(Logger), infoLevel, message, null);
        }
    }
link|flag
vote up 0 vote down

The only thing I can think of doing (as I dont currently use log4net) is to request a stacktrace(new StackTrace), and go back a frame to get the info you need. However, I am unsure of the runtime performance impact of this.

link|flag
log4net allready has this in LocationInformation class, but it does not work when wrapping Ilog – Claus Thomsen Oct 1 '08 at 12:04
vote up 0 vote down

Just declare your log variable like this...

private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

Then you can use it normaly.

link|flag
Didn't work, but I wish it was that easy! – JL Jul 19 at 13:21

Your Answer

Get an OpenID
or

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