Tabnine Logo
LevelNode.getChildren
Code IndexAdd Tabnine to your IDE (free)

How to use
getChildren
method
in
org.wildfly.swarm.bootstrap.logging.LevelNode

Best Java code snippets using org.wildfly.swarm.bootstrap.logging.LevelNode.getChildren (Showing top 5 results out of 315)

origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

  protected void apply(LevelNode node, LogContextConfiguration config) {
    if (!node.getName().equals("")) {
      config.addLoggerConfiguration(node.getName()).setLevel(node.getLevel().toString());
    }

    for (LevelNode each : node.getChildren()) {
      apply(each, config);
    }
  }
}
origin: org.wildfly.swarm/container

protected void apply(LevelNode node, LogContextConfiguration config) {
  if (!node.getName().equals("")) {
    config.addLoggerConfiguration(node.getName()).setLevel(node.getLevel().toString());
  }
  for (LevelNode each : node.getChildren()) {
    apply(each, config);
  }
}
origin: org.wildfly.swarm/container-runtime

protected void apply(LevelNode node, LogContextConfiguration config) {
  if (!node.getName().equals("")) {
    config.addLoggerConfiguration(node.getName()).setLevel(node.getLevel().toString());
  }
  for (LevelNode each : node.getChildren()) {
    apply(each, config);
  }
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

private void apply(LevelNode node, LoggingFraction fraction) {
  if (!node.getName().equals("")) {
    fraction.logger(node.getName(), (l) -> {
      l.level(Level.valueOf(node.getLevel().toString()));
    });
  }
  for (LevelNode each : node.getChildren()) {
    apply(each, fraction);
  }
}
origin: org.wildfly.swarm/logging

  private void apply(LevelNode node) {
    if (!node.getName().equals("")) {
      this.fraction.logger(node.getName(), (l) -> {
        l.level(Level.valueOf(node.getLevel().toString()));
      });
    }
    for (LevelNode each : node.getChildren()) {
      apply(each);
    }
  }
}
org.wildfly.swarm.bootstrap.loggingLevelNodegetChildren

Popular methods of LevelNode

  • getLevel
  • getName
  • <init>
  • add

Popular in Java

  • Finding current android device location
  • getApplicationContext (Context)
  • scheduleAtFixedRate (Timer)
  • setContentView (Activity)
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Notification (javax.management)
  • Best plugins for Eclipse
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