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

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

Simple wrapper around the log4net InfoFormat method.
public InfoFormat ( string message ) : void
message string
Результат void
        public override void InfoFormat(string message, params object[] arguments)
        {
            this.Log(LogLevel.Info, string.Format(CultureInfo.CurrentCulture, message, arguments), (Exception)null);
        }