Class BaseLogger

  • All Implemented Interfaces:
    Logger

    public abstract class BaseLogger
    extends Object
    implements Logger
    • Constructor Detail

      • BaseLogger

        public BaseLogger()
    • Method Detail

      • debug

        public void debug​(String format,
                          Object... args)
        Description copied from interface: Logger
        Writes the diagnostic message and exception at the debug level.
        Specified by:
        debug in interface Logger
      • debug

        public void debug​(Exception exception,
                          String format,
                          Object... args)
        Description copied from interface: Logger
        Writes the diagnostic message and exception at the debug level.
        Specified by:
        debug in interface Logger
      • error

        public void error​(String format,
                          Object... args)
        Description copied from interface: Logger
        Writes the diagnostic message and exception at the error level.
        Specified by:
        error in interface Logger
      • error

        public void error​(Exception exception,
                          String format,
                          Object... args)
        Description copied from interface: Logger
        Writes the diagnostic message and exception at the error level.
        Specified by:
        error in interface Logger
      • debug

        protected abstract void debug​(String message)
      • error

        protected abstract void error​(String message)