Catel.Logging.LogExtensions.InfoAndStatus C# (CSharp) Метод

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

Writes the specified message as info and status message.
public static InfoAndStatus ( this log, string messageFormat ) : void
log this The log.
messageFormat string The message format.
Результат void
        public static void InfoAndStatus(this ILog log, string messageFormat, params object[] args)
        {
            Info(log, messageFormat, args);
            Status(log, messageFormat, args);
        }

Same methods

LogExtensions::InfoAndStatus ( this log ) : void