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

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

Prints the Log with Debug Level
public DebugFormat ( string message ) : void
message string
Результат void
        public override void DebugFormat(string message, params object[] arguments)
        {
            Log(LogLevel.Debug, string.Format(message, arguments));
        }