BalloonsPop.Common.Gadgets.Log4NetWrapper.Info C# (CSharp) 메소드

Info() 공개 메소드

Log a message with the log4net.Core.Level.Debug level including the stack trace of the System.Exception passed as a parameter.
public Info ( string message, Exception exception = null ) : void
message string The message to log.
exception System.Exception The exception to log, including its stack trace.
리턴 void
        public void Info(string message, Exception exception = null)
        {
            this.logger.Info(message, exception);
        }