BalloonsPop.Common.Gadgets.LogHelper.GetLogger C# (CSharp) Method

GetLogger() public static method

Gets an instance of a particular instance of logger.
public static GetLogger ( [ filename = "" ) : ILogger
filename [ The name of the class who call the logger.
return ILogger
        public static ILogger GetLogger([CallerFilePath]string filename = "")
        {
            return new Log4NetWrapper(filename);
        }
LogHelper