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

Status() public static method

Writes an empty line as status message.
public static Status ( this log ) : void
log this The log.
return void
        public static void Status(this ILog log)
        {
            Write(log, LogEvent.Status, string.Empty);
        }

Same methods

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