org.slf4j.spi.MDCAdapter#org.slf4j.helpers.BasicMDCAdapter源码实例Demo

下面列出了org.slf4j.spi.MDCAdapter#org.slf4j.helpers.BasicMDCAdapter 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: component-runtime   文件: StaticMDCBinder.java
public MDCAdapter getMDCA() {
    return new BasicMDCAdapter();
}
 
源代码2 项目: component-runtime   文件: StaticMDCBinder.java
public String getMDCAdapterClassStr() {
    return BasicMDCAdapter.class.getName();
}
 
源代码3 项目: ymate-platform-v2   文件: StaticMDCBinder.java
public MDCAdapter getMDCA() {
    return new BasicMDCAdapter();
}
 
源代码4 项目: ymate-platform-v2   文件: StaticMDCBinder.java
public String getMDCAdapterClassStr() {
    return BasicMDCAdapter.class.getName();
}
 
源代码5 项目: sarl   文件: Slf4jEclipseLoggerServiceProvider.java
@Override
public void initialize() {
	this.loggerFactory = new Slf4jEclipseLoggerFactory();
	this.markerFactory = new BasicMarkerFactory();
	this.mdc = new BasicMDCAdapter();
}
 
源代码6 项目: consulo   文件: StaticMDCBinder.java
public MDCAdapter getMDCA() {
   return new BasicMDCAdapter();
}
 
源代码7 项目: consulo   文件: StaticMDCBinder.java
public String  getMDCAdapterClassStr() {
  return BasicMDCAdapter.class.getName();
}