Amazon.Runtime.Internal.Util.InternalConsoleLogger.Error C# (CSharp) Метод

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

Simple wrapper around the log4net Error method.
public Error ( Exception exception, string messageFormat ) : void
exception System.Exception
messageFormat string
Результат void
        public override void Error(Exception exception, string messageFormat, params object[] args)
        {
            this.Log(LogLevel.Error, string.Format(CultureInfo.CurrentCulture, messageFormat, args), exception);
        }