ch.qos.logback.classic.Logger.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(9.6k)|赞(0)|评价(0)|浏览(125)

本文整理了Java中ch.qos.logback.classic.Logger.<init>()方法的一些代码示例,展示了Logger.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger.<init>()方法的具体详情如下:
包路径:ch.qos.logback.classic.Logger
类名称:Logger
方法名:<init>

Logger.<init>介绍

暂无

代码示例

代码示例来源:origin: ch.qos.logback/logback-classic

public LoggerContext() {
  super();
  this.loggerCache = new ConcurrentHashMap<String, Logger>();
  this.loggerContextRemoteView = new LoggerContextVO(this);
  this.root = new Logger(Logger.ROOT_LOGGER_NAME, null, this);
  this.root.setLevel(Level.DEBUG);
  loggerCache.put(Logger.ROOT_LOGGER_NAME, root);
  initEvaluatorMap();
  size = 1;
  this.frameworkPackages = new ArrayList<String>();
}

代码示例来源:origin: ch.qos.logback/logback-classic

/**
 * The default size of child list arrays. The JDK 1.5 default is 10. We use a
 * smaller value to save a little space.
 */
Logger createChildByName(final String childName) {
  int i_index = LoggerNameUtil.getSeparatorIndexOf(childName, this.name.length() + 1);
  if (i_index != -1) {
    throw new IllegalArgumentException("For logger [" + this.name + "] child name [" + childName
            + " passed as parameter, may not include '.' after index" + (this.name.length() + 1));
  }
  if (childrenList == null) {
    childrenList = new CopyOnWriteArrayList<Logger>();
  }
  Logger childLogger;
  childLogger = new Logger(childName, this, this.loggerContext);
  childrenList.add(childLogger);
  childLogger.effectiveLevelInt = this.effectiveLevelInt;
  return childLogger;
}

代码示例来源:origin: ch.qos.logback/logback-classic

childLogger = new Logger(lastPart, this, this.loggerContext);
} else {
  childLogger = new Logger(name + CoreConstants.DOT + lastPart, this, this.loggerContext);

代码示例来源:origin: camunda/camunda-bpm-platform

public LoggerContext() {
 super();
 this.loggerCache = new ConcurrentHashMap<String, Logger>();
 this.loggerContextRemoteView = new LoggerContextVO(this);
 this.root = new Logger(Logger.ROOT_LOGGER_NAME, null, this);
 this.root.setLevel(Level.DEBUG);
 loggerCache.put(Logger.ROOT_LOGGER_NAME, root);
 initEvaluatorMap();
 size = 1;
 this.frameworkPackages = new ArrayList<String>();
}

代码示例来源:origin: camunda/camunda-bpm-platform

Logger createChildByName(final String childName) {
 int i_index = LoggerNameUtil.getSeparatorIndexOf(childName, this.name.length() + 1);
 if (i_index != -1) {
  throw new IllegalArgumentException("For logger [" + this.name
    + "] child name [" + childName
    + " passed as parameter, may not include '.' after index"
    + (this.name.length() + 1));
 }
 if (childrenList == null) {
  childrenList = new ArrayList<Logger>(DEFAULT_CHILD_ARRAY_SIZE);
 }
 Logger childLogger;
 childLogger = new Logger(childName, this, this.loggerContext);
 childrenList.add(childLogger);
 childLogger.effectiveLevelInt = this.effectiveLevelInt;
 return childLogger;
}

代码示例来源:origin: camunda/camunda-bpm-platform

childLogger = new Logger(lastPart, this, this.loggerContext);
} else {
 childLogger = new Logger(name + CoreConstants.DOT + lastPart, this,
   this.loggerContext);

代码示例来源:origin: com.alibaba.citrus.tool/antx-autoexpand

public LoggerContext() {
 super();
 this.loggerCache = new Hashtable<String, Logger>();
 this.loggerContextRemoteView = new LoggerContextVO(this);
 this.root = new Logger(Logger.ROOT_LOGGER_NAME, null, this);
 this.root.setLevel(Level.DEBUG);
 loggerCache.put(Logger.ROOT_LOGGER_NAME, root);
 putObject(CoreConstants.EVALUATOR_MAP, new HashMap());
 size = 1;
}

代码示例来源:origin: Nextdoor/bender

public LoggerContext() {
  super();
  this.loggerCache = new ConcurrentHashMap<String, Logger>();
  this.loggerContextRemoteView = new LoggerContextVO(this);
  this.root = new Logger(Logger.ROOT_LOGGER_NAME, null, this);
  this.root.setLevel(Level.DEBUG);
  loggerCache.put(Logger.ROOT_LOGGER_NAME, root);
  initEvaluatorMap();
  size = 1;
  this.frameworkPackages = new ArrayList<String>();
}

代码示例来源:origin: tony19/logback-android

public LoggerContext() {
 super();
 this.loggerCache = new ConcurrentHashMap<String, Logger>();
 this.loggerContextRemoteView = new LoggerContextVO(this);
 this.root = new Logger(Logger.ROOT_LOGGER_NAME, null, this);
 this.root.setLevel(Level.DEBUG);
 loggerCache.put(Logger.ROOT_LOGGER_NAME, root);
 initEvaluatorMap();
 size = 1;
 this.frameworkPackages = new ArrayList<String>();
}

代码示例来源:origin: tony19/logback-android

Logger createChildByName(final String childName) {
 int i_index = LoggerNameUtil.getSeparatorIndexOf(childName, this.name.length() + 1);
 if (i_index != -1) {
  throw new IllegalArgumentException("For logger [" + this.name
    + "] child name [" + childName
    + " passed as parameter, may not include '.' after index"
    + (this.name.length() + 1));
 }
 if (childrenList == null) {
  childrenList = new CopyOnWriteArrayList<Logger>();
 }
 Logger childLogger;
 childLogger = new Logger(childName, this, this.loggerContext);
 childrenList.add(childLogger);
 childLogger.effectiveLevelInt = this.effectiveLevelInt;
 return childLogger;
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

public LoggerContext() {
  super();
  this.loggerCache = new ConcurrentHashMap<String, Logger>();
  this.loggerContextRemoteView = new LoggerContextVO(this);
  this.root = new Logger(Logger.ROOT_LOGGER_NAME, null, this);
  this.root.setLevel(Level.DEBUG);
  loggerCache.put(Logger.ROOT_LOGGER_NAME, root);
  initEvaluatorMap();
  size = 1;
  this.frameworkPackages = new ArrayList<String>();
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

/**
 * The default size of child list arrays. The JDK 1.5 default is 10. We use a
 * smaller value to save a little space.
 */
Logger createChildByName(final String childName) {
  int i_index = LoggerNameUtil.getSeparatorIndexOf(childName, this.name.length() + 1);
  if (i_index != -1) {
    throw new IllegalArgumentException("For logger [" + this.name + "] child name [" + childName
            + " passed as parameter, may not include '.' after index" + (this.name.length() + 1));
  }
  if (childrenList == null) {
    childrenList = new CopyOnWriteArrayList<Logger>();
  }
  Logger childLogger;
  childLogger = new Logger(childName, this, this.loggerContext);
  childrenList.add(childLogger);
  childLogger.effectiveLevelInt = this.effectiveLevelInt;
  return childLogger;
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

public LoggerContext() {
  super();
  this.loggerCache = new ConcurrentHashMap<String, Logger>();
  this.loggerContextRemoteView = new LoggerContextVO(this);
  this.root = new Logger(Logger.ROOT_LOGGER_NAME, null, this);
  this.root.setLevel(Level.DEBUG);
  loggerCache.put(Logger.ROOT_LOGGER_NAME, root);
  initEvaluatorMap();
  size = 1;
  this.frameworkPackages = new ArrayList<String>();
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * The default size of child list arrays. The JDK 1.5 default is 10. We use a
 * smaller value to save a little space.
 */
Logger createChildByName(final String childName) {
  int i_index = LoggerNameUtil.getSeparatorIndexOf(childName, this.name.length() + 1);
  if (i_index != -1) {
    throw new IllegalArgumentException("For logger [" + this.name + "] child name [" + childName
            + " passed as parameter, may not include '.' after index" + (this.name.length() + 1));
  }
  if (childrenList == null) {
    childrenList = new CopyOnWriteArrayList<Logger>();
  }
  Logger childLogger;
  childLogger = new Logger(childName, this, this.loggerContext);
  childrenList.add(childLogger);
  childLogger.effectiveLevelInt = this.effectiveLevelInt;
  return childLogger;
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/ch.qos.logback.classic

Logger createChildByName(final String childName) {
 int i_index = LoggerNameUtil.getSeparatorIndexOf(childName, this.name.length() + 1);
 if (i_index != -1) {
  throw new IllegalArgumentException("For logger [" + this.name
    + "] child name [" + childName
    + " passed as parameter, may not include '.' after index"
    + (this.name.length() + 1));
 }
 if (childrenList == null) {
  childrenList = new ArrayList<Logger>(DEFAULT_CHILD_ARRAY_SIZE);
 }
 Logger childLogger;
 childLogger = new Logger(childName, this, this.loggerContext);
 childrenList.add(childLogger);
 childLogger.effectiveLevelInt = this.effectiveLevelInt;
 return childLogger;
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/ch.qos.logback.classic

public LoggerContext() {
 super();
 this.loggerCache = new Hashtable<String, Logger>();
 this.loggerContextRemoteView = new LoggerContextVO(this);
 this.root = new Logger(Logger.ROOT_LOGGER_NAME, null, this);
 this.root.setLevel(Level.DEBUG);
 loggerCache.put(Logger.ROOT_LOGGER_NAME, root);
 initEvaluatorMap();
 size = 1;
}

代码示例来源:origin: com.alibaba.citrus.tool/antx-autoexpand

Logger createChildByName(final String childName) {
 int i_index = getSeparatorIndexOf(childName, this.name
   .length() + 1);
 if (i_index != -1) {
  throw new IllegalArgumentException("For logger [" + this.name
    + "] child name [" + childName
    + " passed as parameter, may not include '.' after index"
    + (this.name.length() + 1));
 }
 if (childrenList == null) {
  childrenList = new ArrayList<Logger>(DEFAULT_CHILD_ARRAY_SIZE);
 }
 Logger childLogger;
 childLogger = new Logger(childName, this, this.loggerContext);
 childrenList.add(childLogger);
 childLogger.effectiveLevelInt = this.effectiveLevelInt;
 return childLogger;
}

代码示例来源:origin: Nextdoor/bender

/**
 * The default size of child list arrays. The JDK 1.5 default is 10. We use a
 * smaller value to save a little space.
 */
Logger createChildByName(final String childName) {
  int i_index = LoggerNameUtil.getSeparatorIndexOf(childName, this.name.length() + 1);
  if (i_index != -1) {
    throw new IllegalArgumentException("For logger [" + this.name + "] child name [" + childName
            + " passed as parameter, may not include '.' after index" + (this.name.length() + 1));
  }
  if (childrenList == null) {
    childrenList = new CopyOnWriteArrayList<Logger>();
  }
  Logger childLogger;
  childLogger = new Logger(childName, this, this.loggerContext);
  childrenList.add(childLogger);
  childLogger.effectiveLevelInt = this.effectiveLevelInt;
  return childLogger;
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

childLogger = new Logger(lastPart, this, this.loggerContext);
} else {
  childLogger = new Logger(name + CoreConstants.DOT + lastPart, this, this.loggerContext);

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

childLogger = new Logger(lastPart, this, this.loggerContext);
} else {
  childLogger = new Logger(name + CoreConstants.DOT + lastPart, this, this.loggerContext);

相关文章

微信公众号

最新文章

更多