congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
StdErrLog.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.eclipse.jetty.util.log.StdErrLog
constructor

Best Java code snippets using org.eclipse.jetty.util.log.StdErrLog.<init> (Showing top 20 results out of 315)

origin: apache/incubator-dubbo

Log.setLog(new StdErrLog());
Log.getLog().setDebugEnabled(false);
origin: apache/incubator-dubbo

Log.setLog(new StdErrLog());
Log.getLog().setDebugEnabled(false);
origin: org.eclipse.jetty/jetty-util

/**
 * Create a Child Logger of this Logger.
 */
@Override
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  logger._stderr = this._stderr;
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
origin: org.eclipse.jetty/jetty-util

private static void initStandardLogging(Throwable e)
{
  Class<?> log_class;
  if(e != null && __ignored)
  {
    e.printStackTrace(System.err);
  }
  if (LOG == null)
  {
    log_class = StdErrLog.class;
    LOG = new StdErrLog();
    boolean announce = Boolean.parseBoolean(__props.getProperty("org.eclipse.jetty.util.log.announce", "true"));
    if(announce)
    {
      LOG.debug("Logging to {} via {}", LOG, log_class.getName());
    }
  }
}

origin: org.eclipse.platform/org.eclipse.equinox.http.jetty

public EquinoxStdErrLog(String name, Logger realLogger) {
  this.localName = name;
  this.realLogger = realLogger == null ? new StdErrLog(name) : realLogger;
  if (threshold == DEBUG)
    this.realLogger.setDebugEnabled(true);
}
origin: org.eclipse.jetty.aggregate/jetty-all-server

private static void initStandardLogging(Throwable e)
{
  Class<?> log_class;
  if(e != null && __ignored)
  {
    e.printStackTrace();
  }
  if (LOG == null)
  {
    log_class = StdErrLog.class;
    LOG = new StdErrLog();
    LOG.debug("Logging to {} via {}", LOG, log_class.getName());
  }
}
origin: com.ovea.tajin.server/tajin-server-jetty9

private static void initStandardLogging(Throwable e)
{
  Class<?> log_class;
  if(e != null && __ignored)
  {
    e.printStackTrace();
  }
  if (LOG == null)
  {
    log_class = StdErrLog.class;
    LOG = new StdErrLog();
    LOG.debug("Logging to {} via {}", LOG, log_class.getName());
  }
}

origin: org.eclipse.jetty.aggregate/jetty-server

private static void initStandardLogging(Throwable e)
{
  Class<?> log_class;
  if(e != null && __ignored)
  {
    e.printStackTrace();
  }
  if (LOG == null)
  {
    log_class = StdErrLog.class;
    LOG = new StdErrLog();
    LOG.debug("Logging to {} via {}", LOG, log_class.getName());
  }
}
origin: com.ovea.tajin.servers/tajin-server-jetty9

private static void initStandardLogging(Throwable e)
{
  Class<?> log_class;
  if(e != null && __ignored)
  {
    e.printStackTrace();
  }
  if (LOG == null)
  {
    log_class = StdErrLog.class;
    LOG = new StdErrLog();
    LOG.debug("Logging to {} via {}", LOG, log_class.getName());
  }
}

origin: Nextdoor/bender

private static void initStandardLogging(Throwable e)
{
  Class<?> log_class;
  if(e != null && __ignored)
  {
    e.printStackTrace(System.err);
  }
  if (LOG == null)
  {
    log_class = StdErrLog.class;
    LOG = new StdErrLog();
    LOG.debug("Logging to {} via {}", LOG, log_class.getName());
  }
}

origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Create a Child Logger of this Logger.
 */
@Override
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  logger._stderr = this._stderr;
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Create a Child Logger of this Logger.
 */
@Override
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  logger._stderr = this._stderr;
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
origin: org.eclipse.jetty.aggregate/jetty-webapp

private static void initStandardLogging(Throwable e)
{
  Class<?> log_class;
  if(e != null && __ignored)
  {
    e.printStackTrace();
  }
  if (LOG == null)
  {
    log_class = StdErrLog.class;
    LOG = new StdErrLog();
    LOG.debug("Logging to {} via {}", LOG, log_class.getName());
  }
}
origin: org.eclipse.jetty.aggregate/jetty-plus

private static void initStandardLogging(Throwable e)
{
  Class<?> log_class;
  if(e != null && __ignored)
  {
    e.printStackTrace();
  }
  if (LOG == null)
  {
    log_class = StdErrLog.class;
    LOG = new StdErrLog();
    LOG.debug("Logging to {} via {}", LOG, log_class.getName());
  }
}
origin: com.jfinal/jetty-server

/**
 * Create a Child Logger of this Logger.
 */
@Override
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  logger._stderr = this._stderr;
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
origin: jenkinsci/winstone

/**
 * Create a Child Logger of this Logger.
 */
@Override
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  logger._stderr = this._stderr;
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
origin: Nextdoor/bender

/**
 * Create a Child Logger of this Logger.
 */
@Override
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  logger._stderr = this._stderr;
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
origin: org.eclipse.jetty.aggregate/jetty-all-server

/**
 * Create a Child Logger of this Logger.
 */
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  // Let Level come from configured Properties instead - sel.setLevel(_level);
  logger.setSource(_source);
  logger._stderr = this._stderr;
  
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
origin: org.eclipse.jetty.aggregate/jetty-server

/**
 * Create a Child Logger of this Logger.
 */
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  // Let Level come from configured Properties instead - sel.setLevel(_level);
  logger.setSource(_source);
  logger._stderr = this._stderr;
  
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
origin: org.eclipse.jetty.aggregate/jetty-webapp

/**
 * Create a Child Logger of this Logger.
 */
protected Logger newLogger(String fullname)
{
  StdErrLog logger = new StdErrLog(fullname);
  // Preserve configuration for new loggers configuration
  logger.setPrintLongNames(_printLongNames);
  // Let Level come from configured Properties instead - sel.setLevel(_level);
  logger.setSource(_source);
  logger._stderr = this._stderr;
  
  // Force the child to have any programmatic configuration
  if (_level!=_configuredLevel)
    logger._level=_level;
  return logger;
}
org.eclipse.jetty.util.logStdErrLog<init>

Javadoc

Construct an anonymous StdErrLog (no name).

NOTE: Discouraged usage!

Popular methods of StdErrLog

  • setLevel
    Set the level for this logger. Available values ( StdErrLog#LEVEL_ALL, StdErrLog#LEVEL_DEBUG, StdErr
  • condensePackageString
    Condenses a classname by stripping down the package name to just the first character of each package
  • debug
  • escape
  • format
  • getLoggingLevel
    Get the Logging Level for the provided log name. Using the FQCN first, then each package segment fro
  • getName
  • info
  • isHideStacks
  • setPrintLongNames
  • tag
  • warn
  • tag,
  • warn,
  • getLevelId,
  • getLoggingProperty,
  • isDebugEnabled,
  • setSource,
  • lookupLoggingLevel,
  • setHideStacks,
  • getLevel

Popular in Java

  • Making http post requests using okhttp
  • getSystemService (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • JLabel (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Top Vim 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