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);

LocationInformationfrom theTypeyou are passing to theLogManager.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