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

Status() public static method

Writes the specified message as status message.
public static Status ( this log, string messageFormat ) : void
log this The log.
messageFormat string The message format.
return void
        public static void Status(this ILog log, string messageFormat, params object[] args)
        {
            Write(log, LogEvent.Status, messageFormat, args);
        }

Same methods

LogExtensions::Status ( this log ) : void