Catel.Logging.LogExtensions.InfoAndStatus C# (CSharp) Method

InfoAndStatus() public static method

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.
return 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