Search code examples
javalogginglogback

Does logback have a NullAppender?


I know there is a NullAppender in log4j. But I can't find the appender in logback. Is there a better way for ignoring all logs in logback?


Solution

  • Setting the log level to OFF will ignore all logs.

    <logger name="..." level="OFF" />