I have wrapped Log4net in a static wrapper and want to log
loggingEvent.LocationInformation.MethodName loggingEvent.LocationInformation.ClassName
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.