Skip to content

Commit

Permalink
Merge pull request #4 from alejandrohdezma/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
janstenpickle authored Mar 24, 2023
2 parents 0898129 + df1bd44 commit 92b2ea2
Showing 1 changed file with 41 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* Copyright 2022 Permutive
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.slf4j.impl;

import org.slf4j.spi.MDCAdapter;
import org.slf4j.helpers.BasicMDCAdapter;

public class StaticMDCBinder {

public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();

private StaticMDCBinder() {
}

public static StaticMDCBinder getSingleton() {
return SINGLETON;
}

public MDCAdapter getMDCA() {
return new BasicMDCAdapter();
}

public String getMDCAdapterClassStr() {
return BasicMDCAdapter.class.getName();
}

}

0 comments on commit 92b2ea2

Please sign in to comment.