BalloonsPop.Common.Gadgets.Log4NetWrapper.Log4NetWrapper C# (CSharp) Method

Log4NetWrapper() public method

Initializes a new instance of the Log4NetWrapper class.
public Log4NetWrapper ( string filename ) : System
filename string The name of the file using logger.
return System
        public Log4NetWrapper(string filename)
        {
            this.logger = LogManager.GetLogger(filename);
            XmlConfigurator.Configure();
        }