congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
InitialLoggerManager
Code IndexAdd Tabnine to your IDE (free)

How to use
InitialLoggerManager
in
org.wildfly.swarm.bootstrap.logging

Best Java code snippets using org.wildfly.swarm.bootstrap.logging.InitialLoggerManager (Showing top 20 results out of 315)

origin: thorntail/thorntail

@Override
public void info(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.INFO, message);
}
origin: org.wildfly.swarm/logging

@Override
public void customize() {
  LevelNode root = InitialLoggerManager.INSTANCE.getRoot();
  apply(root);
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

@Override
public List<ModelNode> getList(LoggingFraction fraction) throws Exception {
  if (fraction == null) {
    fraction = defaultFraction();
  }
  LevelNode root = InitialLoggerManager.INSTANCE.getRoot();
  apply(root, fraction);
  return super.getList(fraction);
}
origin: org.wildfly.swarm/container

@Override
public void configure(InputStream inputStream) throws IOException {
  this.propertyConfigurator.configure(inputStream);
  LogContextConfiguration config = this.propertyConfigurator.getLogContextConfiguration();
  config.getHandlerConfiguration("CONSOLE").setLevel("ALL");
  LevelNode root = InitialLoggerManager.INSTANCE.getRoot();
  apply(root, config);
  config.commit();
}
origin: thorntail/thorntail

@Override
public void error(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.ERROR, message);
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

@Override
public void configure(InputStream inputStream) throws IOException {
  this.propertyConfigurator.configure(inputStream);
  LogContextConfiguration config = this.propertyConfigurator.getLogContextConfiguration();
  config.getHandlerConfiguration("CONSOLE").setLevel("ALL");
  LevelNode root = InitialLoggerManager.INSTANCE.getRoot();
  apply(root, config);
  config.commit();
}
origin: thorntail/thorntail

@Override
public void debug(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.DEBUG, message);
}
origin: org.wildfly.swarm/container-runtime

@Override
public void configure(InputStream inputStream) throws IOException {
  this.propertyConfigurator.configure(inputStream);
  LogContextConfiguration config = this.propertyConfigurator.getLogContextConfiguration();
  config.getHandlerConfiguration("CONSOLE").setLevel("ALL");
  LevelNode root = InitialLoggerManager.INSTANCE.getRoot();
  apply(root, config);
  config.commit();
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

@Override
public void error(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.ERROR, message);
}
origin: thorntail/thorntail

@Override
public void trace(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.TRACE, message);
}
origin: thorntail/thorntail

@Override
public void error(Object message, Throwable t) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.ERROR, message, t);
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

  @Override
  public void error(Object message, Throwable t) {
    InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.ERROR, message, t);
  }
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

@Override
public void trace(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.TRACE, message);
}
origin: thorntail/thorntail

@Override
public void warn(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.WARN, message);
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

@Override
public void debug(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.DEBUG, message);
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

@Override
public void info(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.INFO, message);
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

@Override
public void warn(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.WARN, message);
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

public synchronized void log(InitialBackingLogger logger, BootstrapLogger.Level level, Object message) {
  if (level.ordinal() < logger.getLevel().ordinal()) {
    return;
  }
  if (message instanceof Throwable) {
    log(logger, level, (Throwable) message);
  } else {
    log(logger, level, message.toString());
  }
}
origin: thorntail/thorntail

public synchronized void log(InitialBackingLogger logger, BootstrapLogger.Level level, Object message) {
  if (level.ordinal() < logger.getLevel().ordinal()) {
    return;
  }
  if (message instanceof Throwable) {
    log(logger, level, (Throwable) message);
  } else {
    log(logger, level, message.toString());
  }
}
origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

public synchronized void log(InitialBackingLogger logger, BootstrapLogger.Level level, Object message, Throwable t) {
  if (level.ordinal() < logger.getLevel().ordinal()) {
    return;
  }
  log(logger, level, message);
  log(logger, level, t);
}
org.wildfly.swarm.bootstrap.loggingInitialLoggerManager

Most used methods

  • getRoot
  • log

Popular in Java

  • Finding current android device location
  • setScale (BigDecimal)
  • setContentView (Activity)
  • getApplicationContext (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Top PhpStorm plugins
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