Amazon.Runtime.Internal.Util.InternalFileLogger.DebugFormat C# (CSharp) Method

DebugFormat() public method

Prints the Log with Debug Level
public DebugFormat ( string message ) : void
message string
return void
        public override void DebugFormat(string message, params object[] arguments)
        {
            Log(LogLevel.Debug, string.Format(message, arguments));
        }