Amazon.Runtime.Internal.Util.InternalConsoleLogger.Error C# (CSharp) Méthode

Error() public méthode

Simple wrapper around the log4net Error method.
public Error ( Exception exception, string messageFormat ) : void
exception System.Exception
messageFormat string
Résultat void
        public override void Error(Exception exception, string messageFormat, params object[] args)
        {
            this.Log(LogLevel.Error, string.Format(CultureInfo.CurrentCulture, messageFormat, args), exception);
        }