Java 类org.slf4j.helpers.BasicMDCAdapter 实例源码

项目:ymate-platform-v2    文件:StaticMDCBinder.java   
public MDCAdapter getMDCA() {
    return new BasicMDCAdapter();
}
项目:ymate-platform-v2    文件:StaticMDCBinder.java   
public String getMDCAdapterClassStr() {
    return BasicMDCAdapter.class.getName();
}
项目:bartleby    文件:StaticMDCBinder.java   
/**
 * Currently this method always returns an instance of 
 * {@link BasicMDCAdapter}.
 */
public MDCAdapter getMDCA() {
    // note that this method is invoked only from within the static initializer of
    // the org.slf4j.MDC class.
    return new BasicMDCAdapter();
}
项目:bartleby    文件:StaticMDCBinder.java   
public String getMDCAdapterClassStr() {
    return BasicMDCAdapter.class.getName();
}
项目:EASyProducer    文件:StaticMDCBinder.java   
/**
 * Currently this method always returns an instance of 
 * {@link BasicMDCAdapter}.
 */
public MDCAdapter getMDCA() {
  // note that this method is invoked only from within the static initializer of 
  // the org.slf4j.MDC class.
  return new BasicMDCAdapter();
}
项目:EASyProducer    文件:StaticMDCBinder.java   
public String  getMDCAdapterClassStr() {
  return BasicMDCAdapter.class.getName();
}
项目:consulo    文件:StaticMDCBinder.java   
public MDCAdapter getMDCA() {
   return new BasicMDCAdapter();
}
项目:consulo    文件:StaticMDCBinder.java   
public String  getMDCAdapterClassStr() {
  return BasicMDCAdapter.class.getName();
}
项目:slf4j-android-logger    文件:StaticMDCBinder.java   
public String getMDCAdapterClassStr() {
    return BasicMDCAdapter.class.getName();
}
项目:slf4j-android-logger    文件:StaticMDCBinder.java   
/**
 * Currently this method always returns an instance of
 * {@link org.slf4j.helpers.BasicMDCAdapter}.
 *
 * @return returns an instance of {@link org.slf4j.helpers.BasicMDCAdapter}.
 */
public MDCAdapter getMDCA() {
    // note that this method is invoked only from within the static initializer of
    // the org.slf4j.MDC class.
    return new BasicMDCAdapter();
}