public static bool IsTraceEnabled(this ITcLog logger) { GuardAgainstNullLogger(logger); return(logger.IsLogLevelEnabled(TcLogLevel.Trace)); }
public static bool IsDebugEnabled(this ITcLog logger) { GuardAgainstNullLogger(logger); return(logger.IsLogLevelEnabled(TcLogLevel.Debug)); }
public static bool IsErrorEnabled(this ITcLog logger) { GuardAgainstNullLogger(logger); return(logger.IsLogLevelEnabled(TcLogLevel.Error)); }