how to log MethodName when wrapping Log4net - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:51:06Z http://stackoverflow.com/feeds/question/157232 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net 3 how to log MethodName when wrapping Log4net Claus Thomsen 2008-10-01T11:50:01Z 2008-10-01T14:30:32Z <p>I have wrapped Log4net in a static wrapper and want to log </p> <pre><code>loggingEvent.LocationInformation.MethodName loggingEvent.LocationInformation.ClassName </code></pre> <p>However all i get is the name of my wrapper.</p> <p>How can i Log that info using a forwardingappender and a static wrapper class like </p> <pre><code>Logger.Debug("Logging to Debug"); Logger.Info("Logging to Info"); Logger.Warn("Logging to Warn"); Logger.Error(ex); Logger.Fatal(ex); </code></pre> http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net/157261#157261 0 Answer by mattlant for how to log MethodName when wrapping Log4net mattlant 2008-10-01T11:58:01Z 2008-10-01T11:58:01Z <p>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.</p> http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net/157891#157891 1 Answer by Claus Thomsen for how to log MethodName when wrapping Log4net Claus Thomsen 2008-10-01T14:28:50Z 2008-10-01T14:28:50Z <p>Well the error was somewhere in my appender but for completeness ill include the answer to the best of my knowledge:</p> <p>the Facade you need should wrap ILogger and NOT ILog</p> <pre><code> public static class Logger { private readonly static Type ThisDeclaringType = typeof(Logger); private static readonly ILogger defaultLogger; static Logger() { defaultLogger = LoggerManager.GetLogger(Assembly.GetCallingAssembly(),"MyDefaultLoggger"); </code></pre> <p>...</p> <pre><code> public static void Info(string message) { if (defaultLogger.IsEnabledFor(infoLevel)) { defaultLogger.Log(typeof(Logger), infoLevel, message, null); } } </code></pre> http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net/157897#157897 0 Answer by Fred for how to log MethodName when wrapping Log4net Fred 2008-10-01T14:30:32Z 2008-10-01T14:30:32Z <p>Just declare your log variable like this...</p> <pre><code>private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); </code></pre> <p>Then you can use it normaly. </p>