Catel.Logging.LogExtensions.DebugAndStatus C# (CSharp) Méthode

DebugAndStatus() public static méthode

Writes an empty line as debug and status message.
public static DebugAndStatus ( this log ) : void
log this The log.
Résultat void
        public static void DebugAndStatus(this ILog log)
        {
            Debug(log);
            Status(log);
        }

Same methods

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