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

Warn() 공개 메소드

Log a message with the log4net.Core.Level.Warn level including the stack trace of the System.Exception passed as a parameter.
public Warn ( 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 Warn(string message, Exception exception = null)
        {
            this.logger.Warn(message, exception);
        }