org.tarantool.logging.LoggerProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector Show documentation
Show all versions of connector Show documentation
Tarantool client for java
The newest version!
package org.tarantool.logging;
/**
* Provides loggers depended on logger implementations.
* This interface is also used as SPI and its implementations
* can be discovered when {@link LoggerFactory} is loaded.
*
* This class is not a part of public API.
*/
public interface LoggerProvider {
/**
* Gets a logger by its name.
*
* @param name logger name
*
* @return constructed logger
*/
Logger getLogger(final String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy