BalloonsPop.Common.Gadgets.Log4NetWrapper.Error C# (CSharp) Метод

Error() публичный Метод

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