Uses of Interface
org.eclipse.aether.spi.log.LoggerFactory
-
Packages that use LoggerFactory Package Description org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system.org.eclipse.aether.internal.impl.slf4j org.eclipse.aether.internal.test.util Utility classes to ease unit testing.org.eclipse.aether.spi.log A simple logging infrastructure for diagnostic messages. -
-
Uses of LoggerFactory in org.eclipse.aether.internal.impl
Methods in org.eclipse.aether.internal.impl that return LoggerFactory Modifier and Type Method Description LoggerFactory
LoggerFactoryProvider. get()
Methods in org.eclipse.aether.internal.impl with parameters of type LoggerFactory Modifier and Type Method Description DefaultArtifactResolver
DefaultArtifactResolver. setLoggerFactory(LoggerFactory loggerFactory)
Deprecated.not used any more since MRESOLVER-36 move to slf4j, added back in MRESOLVER-64 for compatibilityDefaultRepositorySystem
DefaultRepositorySystem. setLoggerFactory(LoggerFactory loggerFactory)
Deprecated.not used any more since MRESOLVER-36 move to slf4j, added back in MRESOLVER-64 for compatibility -
Uses of LoggerFactory in org.eclipse.aether.internal.impl.slf4j
Classes in org.eclipse.aether.internal.impl.slf4j that implement LoggerFactory Modifier and Type Class Description class
Slf4jLoggerFactory
A logger factory that delegates to SLF4J logging. -
Uses of LoggerFactory in org.eclipse.aether.internal.test.util
Classes in org.eclipse.aether.internal.test.util that implement LoggerFactory Modifier and Type Class Description class
TestLoggerFactory
A logger factory that writes to somePrintStream
. -
Uses of LoggerFactory in org.eclipse.aether.spi.log
Classes in org.eclipse.aether.spi.log that implement LoggerFactory Modifier and Type Class Description class
NullLoggerFactory
A logger factory that disables any logging.Fields in org.eclipse.aether.spi.log declared as LoggerFactory Modifier and Type Field Description static LoggerFactory
NullLoggerFactory. INSTANCE
The singleton instance of this factory.Methods in org.eclipse.aether.spi.log with parameters of type LoggerFactory Modifier and Type Method Description static Logger
NullLoggerFactory. getSafeLogger(LoggerFactory loggerFactory, Class<?> type)
Gets a logger from the specified factory for the given class, falling back to a logger from this factory if the specified factory isnull
or fails to provide a logger.
-