All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tarantool.logging.JdkLoggerProvider Maven / Gradle / Ivy

package org.tarantool.logging;

/**
 * Delegates a logger creation to JUL logger adapter.
 * 

* This class is not a part of public API. */ public class JdkLoggerProvider implements LoggerProvider { @Override public Logger getLogger(String name) { return new JdkLogger(name); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy