org.tarantool.logging.Slf4jLoggerProvider 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;
/**
* Delegates a logger creation to SLF4J logger
* adapter.
*
* This class is not a part of public API.
*/
public class Slf4jLoggerProvider implements LoggerProvider {
@Override
public Logger getLogger(String name) {
return new Slf4jLogger(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy