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

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

Write debug message to Console
public Debug ( Exception exception, string messageFormat ) : void
exception System.Exception
messageFormat string
Результат void
        public override void Debug(Exception exception, string messageFormat, params object[] args)
        {
            this.Log(LogLevel.Debug, string.Format(CultureInfo.CurrentCulture, messageFormat, args), exception);
        }