org.apache.log4j.Hierarchy.setThreshold()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(6.7k)|赞(0)|评价(0)|浏览(160)

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

Hierarchy.setThreshold介绍

[英]The string form of #setThreshold(Level).
[中]#setThreshold(Level)的字符串形式。

代码示例

代码示例来源:origin: log4j/log4j

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = (Level) Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

代码示例来源:origin: log4j/log4j

/**
  Create a new logger hierarchy.
  @param root The root of the new hierarchy.
 */
public
Hierarchy(Logger root) {
 ht = new Hashtable();
 listeners = new Vector(1);
 this.root = root;
 // Enable all level levels by default.
 setThreshold(Level.ALL);
 this.root.setHierarchy(this);
 rendererMap = new RendererMap();
 defaultFactory = new DefaultCategoryFactory();
}

代码示例来源:origin: log4j/log4j

setThreshold(Level.ALL);

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

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = (Level) Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

代码示例来源:origin: apache/log4j

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

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

/**
  Create a new logger hierarchy.
  @param root The root of the new hierarchy.
 */
public
Hierarchy(Logger root) {
 ht = new Hashtable();
 listeners = new Vector(1);
 this.root = root;
 // Enable all level levels by default.
 setThreshold(Level.ALL);
 this.root.setHierarchy(this);
 rendererMap = new RendererMap();
 defaultFactory = new DefaultCategoryFactory();
}

代码示例来源:origin: apache/log4j

/**
  Create a new logger hierarchy.
  @param root The root of the new hierarchy.
 */
public
Hierarchy(Logger root) {
 ht = new Hashtable();
 listeners = new Vector(1);
 this.root = root;
 // Enable all level levels by default.
 setThreshold(Level.ALL);
 this.root.setHierarchy(this);
 rendererMap = new RendererMap();
 defaultFactory = new DefaultCategoryFactory();
}

代码示例来源:origin: apache/log4j

setThreshold(Level.ALL);

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

/**
  Reset all values contained in this hierarchy instance to their
  default.  This removes all appenders from all categories, sets
  the level of all non-root categories to <code>null</code>,
  sets their additivity flag to <code>true</code> and sets the level
  of the root logger to {@link Level#DEBUG DEBUG}.  Moreover,
  message disabling is set its default "off" value.
  <p>Existing categories are not removed. They are just reset.
  <p>This method should be used sparingly and with care as it will
  block all logging until it is completed.</p>
  @since 0.8.5 */
public
void resetConfiguration() {
 getRootLogger().setLevel((Level) Level.DEBUG);
 root.setResourceBundle(null);
 setThreshold(Level.ALL);
 // the synchronization is needed to prevent JDK 1.2.x hashtable
 // surprises
 synchronized(ht) {
  shutdown(); // nested locks are OK
  Enumeration cats = getCurrentLoggers();
  while(cats.hasMoreElements()) {
 Logger c = (Logger) cats.nextElement();
 c.setLevel(null);
 c.setAdditivity(true);
 c.setResourceBundle(null);
  }
 }
 rendererMap.clear();
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.log4j

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = (Level) Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

代码示例来源:origin: org.apache/log4j

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = (Level) Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

代码示例来源:origin: org.apache.activemq/activemq-all

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = (Level) Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

代码示例来源:origin: org.apache.log4j/com.springsource.org.apache.log4j

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = (Level) Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

代码示例来源:origin: apache-log4j/log4j

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = (Level) Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

代码示例来源:origin: org.jboss.logmanager/log4j-jboss-logmanager

@Override
public void setThreshold(String levelStr) {
  Level l = Level.toLevel(levelStr, null);
  if (l != null) {
    setThreshold(l);
  } else {
    LogLog.warn("Could not convert [" + levelStr + "] to Level.");
  }
}

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

/**
  The string form of {@link #setThreshold(Level)}.
*/
public
void setThreshold(String levelStr) {
 Level l = (Level) Level.toLevel(levelStr, null);
 if(l != null) {
  setThreshold(l);
 } else {
  LogLog.warn("Could not convert ["+levelStr+"] to Level.");
 }
}

代码示例来源:origin: org.apache.activemq/activemq-all

/**
  Create a new logger hierarchy.
  @param root The root of the new hierarchy.
 */
public
Hierarchy(Logger root) {
 ht = new Hashtable();
 listeners = new Vector(1);
 this.root = root;
 // Enable all level levels by default.
 setThreshold(Level.ALL);
 this.root.setHierarchy(this);
 rendererMap = new RendererMap();
 defaultFactory = new DefaultCategoryFactory();
}

代码示例来源:origin: org.apache.log4j/com.springsource.org.apache.log4j

/**
  Create a new logger hierarchy.
  @param root The root of the new hierarchy.
 */
public
Hierarchy(Logger root) {
 ht = new Hashtable();
 listeners = new Vector(1);
 this.root = root;
 // Enable all level levels by default.
 setThreshold(Level.ALL);
 this.root.setHierarchy(this);
 rendererMap = new RendererMap();
 defaultFactory = new DefaultCategoryFactory();
}

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

/**
  Create a new logger hierarchy.
  @param root The root of the new hierarchy.
 */
public
Hierarchy(Logger root) {
 ht = new Hashtable();
 listeners = new Vector(1);
 this.root = root;
 // Enable all level levels by default.
 setThreshold(Level.ALL);
 this.root.setHierarchy(this);
 rendererMap = new RendererMap();
 defaultFactory = new DefaultCategoryFactory();
}

代码示例来源:origin: apache-log4j/log4j

/**
  Create a new logger hierarchy.
  @param root The root of the new hierarchy.
 */
public
Hierarchy(Logger root) {
 ht = new Hashtable();
 listeners = new Vector(1);
 this.root = root;
 // Enable all level levels by default.
 setThreshold(Level.ALL);
 this.root.setHierarchy(this);
 rendererMap = new RendererMap();
 defaultFactory = new DefaultCategoryFactory();
}

相关文章