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

DebugAndStatus() public static method

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

Same methods

LogExtensions::DebugAndStatus ( this log ) : void