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

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

Writes an empty line as info and status message.
public static InfoAndStatus ( this log ) : void
log this The log.
Результат void
        public static void InfoAndStatus(this ILog log)
        {
            Info(log);
            Status(log);
        }

Same methods

LogExtensions::InfoAndStatus ( this log, string messageFormat ) : void