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

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

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