Class Loggers


  • public final class Loggers
    extends java.lang.Object
    This class is not part of the public API.
    Since:
    3.0
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String PREFIX
      The prefix for all logger names.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static Logger getLogger​(java.lang.String suffix)
      Gets a logger with the given suffix appended on to PREFIX, separated by a '.'.
      • Methods inherited from class java.lang.Object

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

      • PREFIX

        public static final java.lang.String PREFIX
        The prefix for all logger names.
        See Also:
        Constant Field Values
    • Method Detail

      • getLogger

        public static Logger getLogger​(java.lang.String suffix)
        Gets a logger with the given suffix appended on to PREFIX, separated by a '.'.
        Parameters:
        suffix - the suffix for the logger
        Returns:
        the logger
        See Also:
        PREFIX