Class Slf4jLogger

  • All Implemented Interfaces:
    org.codehaus.plexus.logging.Logger

    public class Slf4jLogger
    extends Object
    implements org.codehaus.plexus.logging.Logger
    Adapt an SLF4J logger to a Plexus logger, ignoring Plexus logger API parts that are not classical and probably not really used.
    Since:
    3.1.0
    Author:
    Jason van Zyl
    • Constructor Detail

      • Slf4jLogger

        public Slf4jLogger​(org.slf4j.Logger logger)
    • Method Detail

      • debug

        public void debug​(String message)
        Specified by:
        debug in interface org.codehaus.plexus.logging.Logger
      • debug

        public void debug​(String message,
                          Throwable throwable)
        Specified by:
        debug in interface org.codehaus.plexus.logging.Logger
      • isDebugEnabled

        public boolean isDebugEnabled()
        Specified by:
        isDebugEnabled in interface org.codehaus.plexus.logging.Logger
      • info

        public void info​(String message)
        Specified by:
        info in interface org.codehaus.plexus.logging.Logger
      • info

        public void info​(String message,
                         Throwable throwable)
        Specified by:
        info in interface org.codehaus.plexus.logging.Logger
      • isInfoEnabled

        public boolean isInfoEnabled()
        Specified by:
        isInfoEnabled in interface org.codehaus.plexus.logging.Logger
      • warn

        public void warn​(String message)
        Specified by:
        warn in interface org.codehaus.plexus.logging.Logger
      • warn

        public void warn​(String message,
                         Throwable throwable)
        Specified by:
        warn in interface org.codehaus.plexus.logging.Logger
      • isWarnEnabled

        public boolean isWarnEnabled()
        Specified by:
        isWarnEnabled in interface org.codehaus.plexus.logging.Logger
      • error

        public void error​(String message)
        Specified by:
        error in interface org.codehaus.plexus.logging.Logger
      • error

        public void error​(String message,
                          Throwable throwable)
        Specified by:
        error in interface org.codehaus.plexus.logging.Logger
      • isErrorEnabled

        public boolean isErrorEnabled()
        Specified by:
        isErrorEnabled in interface org.codehaus.plexus.logging.Logger
      • fatalError

        public void fatalError​(String message)
        Specified by:
        fatalError in interface org.codehaus.plexus.logging.Logger
      • fatalError

        public void fatalError​(String message,
                               Throwable throwable)
        Specified by:
        fatalError in interface org.codehaus.plexus.logging.Logger
      • isFatalErrorEnabled

        public boolean isFatalErrorEnabled()
        Specified by:
        isFatalErrorEnabled in interface org.codehaus.plexus.logging.Logger
      • getThreshold

        public int getThreshold()
        Warning: ignored (always return 0 == Logger.LEVEL_DEBUG).
        Specified by:
        getThreshold in interface org.codehaus.plexus.logging.Logger
      • setThreshold

        public void setThreshold​(int threshold)
        Warning: ignored.
        Specified by:
        setThreshold in interface org.codehaus.plexus.logging.Logger
      • getChildLogger

        public org.codehaus.plexus.logging.Logger getChildLogger​(String name)
        Warning: ignored (always return null).
        Specified by:
        getChildLogger in interface org.codehaus.plexus.logging.Logger
      • getName

        public String getName()
        Specified by:
        getName in interface org.codehaus.plexus.logging.Logger