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

WarningAndStatus() public static method

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

Same methods

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