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

WarningAndStatus() public static method

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

Same methods

LogExtensions::WarningAndStatus ( this log ) : void