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

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

Prints the Log with Debug Level
public Debug ( Exception exception, string messageFormat ) : void
exception System.Exception
messageFormat string
Результат void
        public override void Debug(Exception exception, string messageFormat, params object[] args)
        {
            string debug = @"{0} {1}";
            string message = string.Format(messageFormat, args);
            string debugMessage = string.Format(debug, message, exception != null ? exception.ToString() : "");
            Log(LogLevel.Debug, debugMessage);
        }