Tabnine Logo
RootLoggerAction.addInfo
Code IndexAdd Tabnine to your IDE (free)

How to use
addInfo
method
in
ch.qos.logback.classic.joran.action.RootLoggerAction

Best Java code snippets using ch.qos.logback.classic.joran.action.RootLoggerAction.addInfo (Showing top 8 results out of 315)

origin: ch.qos.logback/logback-classic

public void begin(InterpretationContext ec, String name, Attributes attributes) {
  inError = false;
  LoggerContext loggerContext = (LoggerContext) this.context;
  root = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
  String levelStr = ec.subst(attributes.getValue(ActionConst.LEVEL_ATTRIBUTE));
  if (!OptionHelper.isEmpty(levelStr)) {
    Level level = Level.toLevel(levelStr);
    addInfo("Setting level of ROOT logger to " + level);
    root.setLevel(level);
  }
  ec.pushObject(root);
}
origin: camunda/camunda-bpm-platform

public void begin(InterpretationContext ec, String name, Attributes attributes) {
 inError = false;
 LoggerContext loggerContext = (LoggerContext) this.context;
 root = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
 String levelStr =  ec.subst(attributes.getValue(ActionConst.LEVEL_ATTRIBUTE));
 if (!OptionHelper.isEmpty(levelStr)) {
  Level level = Level.toLevel(levelStr);
  addInfo("Setting level of ROOT logger to " + level);
  root.setLevel(level);
 }
 ec.pushObject(root);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

public void begin(InterpretationContext ec, String name, Attributes attributes) {
 inError = false;
 LoggerContext loggerContext = (LoggerContext) this.context;
 root = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
 String levelStr =  ec.subst(attributes.getValue(ActionConst.LEVEL_ATTRIBUTE));
 if (!OptionHelper.isEmpty(levelStr)) {
  Level level = Level.toLevel(levelStr);
  addInfo("Setting level of ROOT logger to " + level);
  root.setLevel(level);
 }
 ec.pushObject(root);
}
origin: Nextdoor/bender

public void begin(InterpretationContext ec, String name, Attributes attributes) {
  inError = false;
  LoggerContext loggerContext = (LoggerContext) this.context;
  root = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
  String levelStr = ec.subst(attributes.getValue(ActionConst.LEVEL_ATTRIBUTE));
  if (!OptionHelper.isEmpty(levelStr)) {
    Level level = Level.toLevel(levelStr);
    addInfo("Setting level of ROOT logger to " + level);
    root.setLevel(level);
  }
  ec.pushObject(root);
}
origin: at.bestsolution.efxclipse.eclipse/ch.qos.logback.classic

public void begin(InterpretationContext ec, String name, Attributes attributes) {
 inError = false;
 LoggerContext loggerContext = (LoggerContext) this.context;
 root = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
 String levelStr =  ec.subst(attributes.getValue(ActionConst.LEVEL_ATTRIBUTE));
 if (!OptionHelper.isEmpty(levelStr)) {
  Level level = Level.toLevel(levelStr);
  addInfo("Setting level of ROOT logger to " + level);
  root.setLevel(level);
 }
 ec.pushObject(root);
}
origin: tony19/logback-android

public void begin(InterpretationContext ec, String name, Attributes attributes) {
 inError = false;
 LoggerContext loggerContext = (LoggerContext) this.context;
 root = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
 String levelStr =  ec.subst(attributes.getValue(ActionConst.LEVEL_ATTRIBUTE));
 if (!OptionHelper.isEmpty(levelStr)) {
  Level level = Level.toLevel(levelStr);
  addInfo("Setting level of ROOT logger to " + level);
  root.setLevel(level);
 }
 ec.pushObject(root);
}
origin: com.impetus.fabric/fabric-jdbc-driver-shaded

public void begin(InterpretationContext ec, String name, Attributes attributes) {
  inError = false;
  LoggerContext loggerContext = (LoggerContext) this.context;
  root = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
  String levelStr = ec.subst(attributes.getValue(ActionConst.LEVEL_ATTRIBUTE));
  if (!OptionHelper.isEmpty(levelStr)) {
    Level level = Level.toLevel(levelStr);
    addInfo("Setting level of ROOT logger to " + level);
    root.setLevel(level);
  }
  ec.pushObject(root);
}
origin: io.virtdata/virtdata-lib-realer

public void begin(InterpretationContext ec, String name, Attributes attributes) {
  inError = false;
  LoggerContext loggerContext = (LoggerContext) this.context;
  root = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
  String levelStr = ec.subst(attributes.getValue(ActionConst.LEVEL_ATTRIBUTE));
  if (!OptionHelper.isEmpty(levelStr)) {
    Level level = Level.toLevel(levelStr);
    addInfo("Setting level of ROOT logger to " + level);
    root.setLevel(level);
  }
  ec.pushObject(root);
}
ch.qos.logback.classic.joran.actionRootLoggerActionaddInfo

Popular methods of RootLoggerAction

  • <init>
  • addWarn

Popular in Java

  • Updating database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • setRequestProperty (URLConnection)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • JPanel (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now