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

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

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

origin: thorntail/thorntail

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

@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: thorntail/thorntail

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

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

@Override
public void error(Object message) {
  InitialLoggerManager.INSTANCE.log(this, BootstrapLogger.Level.ERROR, message);
}
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: 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);
}
origin: thorntail/thorntail

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.loggingInitialLoggerManagerlog

Popular methods of InitialLoggerManager

  • getRoot

Popular in Java

  • Running tasks concurrently on multiple threads
  • getExternalFilesDir (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setScale (BigDecimal)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • BoxLayout (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Best IntelliJ 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