Class Logger.Slf4jLogBackEnd

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.Map<java.lang.Class<?>,​org.slf4j.Logger> loggers  
    • Constructor Summary

      Constructors 
      Constructor Description
      Slf4jLogBackEnd()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected org.slf4j.Logger getLogger​(java.lang.Class<?> clazz)  
      void log​(java.lang.Class<?> clazz, Logger.LogLevel loglevel, java.lang.String msg, java.lang.Object... params)
      Invoked for every logging event.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • loggers

        protected java.util.Map<java.lang.Class<?>,​org.slf4j.Logger> loggers
    • Constructor Detail

      • Slf4jLogBackEnd

        public Slf4jLogBackEnd()
    • Method Detail

      • log

        public void log​(java.lang.Class<?> clazz,
                        Logger.LogLevel loglevel,
                        java.lang.String msg,
                        java.lang.Object... params)
        Invoked for every logging event.
        Specified by:
        log in interface Logger.LogBackEnd
        Parameters:
        clazz - the class that sends the log message.
        loglevel - the logging level.
        msg - the message format string.
        params - the message parameters for the format string.
      • getLogger

        protected org.slf4j.Logger getLogger​(java.lang.Class<?> clazz)