Can This Simple Log4Net Wrapper Be Improved?
问题 I have written a simple log4net wrapper. I was wondering whether this wrapper code could be improved. I am little bit worried about the reflection code thrown in into each Logging Function (Info, Warn etc) to get the Calling function name. Whether there could be any possible performance problems in due to this? namespace Acqueon.Pacer.Core.Helpers { #region Imports using System; using System.Diagnostics; using System.Reflection; using log4net; #endregion /// <summary> /// log4net Log helper /