At.FF.Krems.Utils.Logging.Log4NetExtensions.TraceFormatFast C# (CSharp) Метод

TraceFormatFast() публичный статический Метод

Logs a formatted message string with the F:log4net.Core.Level.Trace level.

The message is formatted using the String.Format method. See M:System.String.Format(System.String,System.Object[]) for details of the syntax of the format string and the behavior of the formatting.

This method does not take an T:System.Exception object to include in the log event. To pass an T:System.Exception use one of the M:log4net.ILog.Trace(System.Object,System.Exception) methods instead.

public static TraceFormatFast ( this logger, IFormatProvider provider, string format ) : void
logger this log4net logger
provider IFormatProvider An that supplies culture-specific formatting information
format string A String containing zero or more format items
Результат void
        public static void TraceFormatFast(this ILog logger, IFormatProvider provider, string format, params object[] args)
        {
            if (logger.IsTraceEnabled())
            {
                logger.TraceFormat(provider, format, args);
            }
        }

Same methods

Log4NetExtensions::TraceFormatFast ( this logger, string format ) : void
Log4NetExtensions::TraceFormatFast ( this logger, string format, object arg0 ) : void
Log4NetExtensions::TraceFormatFast ( this logger, string format, object arg0, object arg1 ) : void
Log4NetExtensions::TraceFormatFast ( this logger, string format, object arg0, object arg1, object arg2 ) : void