org.slf4j.impl.StaticMDCBinder Maven / Gradle / Ivy
package org.slf4j.impl;
import org.slf4j.spi.MDCAdapter;
import uk.org.lidalia.slf4jtest.TestMDCAdapter;
public final class StaticMDCBinder {
public static final org.slf4j.impl.StaticMDCBinder SINGLETON = new org.slf4j.impl.StaticMDCBinder();
private final TestMDCAdapter testMDCAdapter = new TestMDCAdapter();
private StaticMDCBinder() {
}
public MDCAdapter getMDCA() {
return testMDCAdapter;
}
public String getMDCAdapterClassStr() {
return TestMDCAdapter.class.getName();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy