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);
        }