Tabnine Logo
Logger.getLogger
Code IndexAdd Tabnine to your IDE (free)

How to use
getLogger
method
in
org.eclipse.jetty.util.log.Logger

Best Java code snippets using org.eclipse.jetty.util.log.Logger.getLogger (Showing top 10 results out of 315)

origin: org.eclipse.jetty/jetty-util

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  initialized();
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
origin: org.eclipse.platform/org.eclipse.equinox.http.jetty

@Override
public org.eclipse.jetty.util.log.Logger getLogger(String name) {
  if ((name == null && this.localName == null) || (name != null && name.equals(this.localName)))
    return this;
  return new EquinoxStdErrLog(name, realLogger.getLogger(name));
}
origin: jenkinsci/winstone

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  initialized();
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
origin: Nextdoor/bender

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  initialized();
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
origin: org.eclipse.jetty.aggregate/jetty-all-server

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  if (!initialized())
    return null;
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
origin: org.eclipse.jetty.aggregate/jetty-plus

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  if (!initialized())
    return null;
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
origin: org.eclipse.jetty.aggregate/jetty-webapp

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  if (!initialized())
    return null;
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
origin: org.eclipse.jetty.aggregate/jetty-server

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  if (!initialized())
    return null;
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  if (!initialized())
  {
    IllegalStateException e = new IllegalStateException();
    e.printStackTrace();
    throw e;
  }
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Obtain a named Logger or the default Logger if null is passed.
 * @param name the Logger name
 * @return the Logger with the given name
 */
public static Logger getLogger(String name)
{
  if (!initialized())
  {
    IllegalStateException e = new IllegalStateException();
    e.printStackTrace();
    throw e;
  }
  if(name==null)
    return LOG;
  Logger logger = __loggers.get(name);
  if(logger==null)
    logger = LOG.getLogger(name);
  return logger;
}
org.eclipse.jetty.util.logLoggergetLogger

Popular methods of Logger

  • debug
    Logs the given Throwable information at debug level
  • isDebugEnabled
  • warn
    Logs the given Throwable information at warn level
  • info
    Logs the given Throwable information at info level
  • ignore
    Ignore an exception.This should be used rather than an empty catch block.
  • getName
  • setDebugEnabled
    Mutator used to turn debug on programmatically.

Popular in Java

  • Reading from database using SQL prepared statement
  • setScale (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • findViewById (Activity)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • ImageIO (javax.imageio)
  • JTextField (javax.swing)
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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