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

ErrorAndStatus() public static method

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

Same methods

LogExtensions::ErrorAndStatus ( this log ) : void