how to log MethodName when wrapping Log4net - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:51:06Zhttp://stackoverflow.com/feeds/question/157232http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net3how to log MethodName when wrapping Log4netClaus Thomsen2008-10-01T11:50:01Z2008-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#1572610Answer by mattlant for how to log MethodName when wrapping Log4netmattlant2008-10-01T11:58:01Z2008-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#1578911Answer by Claus Thomsen for how to log MethodName when wrapping Log4netClaus Thomsen2008-10-01T14:28:50Z2008-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#1578970Answer by Fred for how to log MethodName when wrapping Log4netFred2008-10-01T14:30:32Z2008-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>