Class TestLoggerFactory.TestLogger

java.lang.Object
org.eclipse.aether.internal.test.util.TestLoggerFactory.TestLogger
All Implemented Interfaces:
Logger
Enclosing class:
TestLoggerFactory

private static final class TestLoggerFactory.TestLogger extends Object implements Logger
  • Field Details

  • Constructor Details

  • Method Details

    • isWarnEnabled

      public boolean isWarnEnabled()
      Description copied from interface: Logger
      Indicates whether warn logging is enabled.
      Specified by:
      isWarnEnabled in interface Logger
      Returns:
      true if warn logging is enabled, false otherwise.
    • warn

      public void warn(String msg, Throwable error)
      Description copied from interface: Logger
      Emits the specified message along with a stack trace of the given exception.
      Specified by:
      warn in interface Logger
      Parameters:
      msg - The message to log, must not be null.
      error - The exception to log, may be null.
    • warn

      public void warn(String msg)
      Description copied from interface: Logger
      Emits the specified message.
      Specified by:
      warn in interface Logger
      Parameters:
      msg - The message to log, must not be null.
    • isDebugEnabled

      public boolean isDebugEnabled()
      Description copied from interface: Logger
      Indicates whether debug logging is enabled.
      Specified by:
      isDebugEnabled in interface Logger
      Returns:
      true if debug logging is enabled, false otherwise.
    • debug

      public void debug(String msg, Throwable error)
      Description copied from interface: Logger
      Emits the specified message along with a stack trace of the given exception.
      Specified by:
      debug in interface Logger
      Parameters:
      msg - The message to log, must not be null.
      error - The exception to log, may be null.
    • debug

      public void debug(String msg)
      Description copied from interface: Logger
      Emits the specified message.
      Specified by:
      debug in interface Logger
      Parameters:
      msg - The message to log, must not be null.