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

ErrorAndStatus() public static method

Writes an empty line as error and status message.
public static ErrorAndStatus ( this log ) : void
log this The log.
return void
        public static void ErrorAndStatus(this ILog log)
        {
            Error(log);
            Status(log);
        }

Same methods

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