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

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

Simple wrapper around the log4net DebugFormat method.
public DebugFormat ( string message ) : void
message string
Результат void
        public override void DebugFormat(string message, params object[] arguments)
        {
            logMethod.Invoke(
                this.internalLogger,
                new object[]
                {
                    loggerType, debugLevelPropertyValue,
                    new LogMessage(CultureInfo.InvariantCulture, message, arguments),
                    null
                });

        }