Package org.eclipse.aether.spi.log
Interface LoggerFactory
-
- All Known Implementing Classes:
NullLoggerFactory,Slf4jLoggerFactory,TestLoggerFactory
public interface LoggerFactoryA factory to create loggers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoggergetLogger(java.lang.String name)Gets a logger for a class with the specified name.
-
-
-
Method Detail
-
getLogger
Logger getLogger(java.lang.String name)
Gets a logger for a class with the specified name.- Parameters:
name- The name of the class requesting a logger, must not benull.- Returns:
- The requested logger, never
null.
-
-