org.slf4j.impl.StaticMDCBinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of muffero-slf4j16 Show documentation
Show all versions of muffero-slf4j16 Show documentation
Muffero bindings for SLF4J 1.6.x
package org.slf4j.impl;
import org.slf4j.spi.MDCAdapter;
public class StaticMDCBinder
{
public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
private static final MDCAdapter adapter = new MufferoMDCAdapter();
private static final String adapterClassName = MufferoMDCAdapter.class.getName();
private StaticMDCBinder(){}
public MDCAdapter getMDCA()
{
return adapter;
}
public String getMDCAdapterClassStr()
{
return adapterClassName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy