Class NoopLogger

  • All Implemented Interfaces:
    Logger

    public class NoopLogger
    extends java.lang.Object
    implements Logger
    • Constructor Summary

      Constructors 
      Constructor Description
      NoopLogger()  
      NoopLogger​(boolean verbose)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void debug​(java.lang.CharSequence content)
      Send a message to the user in the debug level.
      void error​(java.lang.CharSequence content)
      Send a message to the user in the error level.
      void info​(java.lang.CharSequence content)
      Send a message to the user in the info level.
      void warn​(java.lang.CharSequence content)
      Send a message to the user in the warn level.
      • Methods inherited from class java.lang.Object

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

      • NoopLogger

        public NoopLogger()
      • NoopLogger

        public NoopLogger​(boolean verbose)
    • Method Detail

      • debug

        public void debug​(java.lang.CharSequence content)
        Description copied from interface: Logger
        Send a message to the user in the debug level.
        Specified by:
        debug in interface Logger
      • info

        public void info​(java.lang.CharSequence content)
        Description copied from interface: Logger
        Send a message to the user in the info level.
        Specified by:
        info in interface Logger
      • warn

        public void warn​(java.lang.CharSequence content)
        Description copied from interface: Logger
        Send a message to the user in the warn level.
        Specified by:
        warn in interface Logger
      • error

        public void error​(java.lang.CharSequence content)
        Description copied from interface: Logger
        Send a message to the user in the error level.
        Specified by:
        error in interface Logger