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

org.slf4j.impl.StaticMDCBinder Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
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