Codota Logo
Logger.isInfoEnabled
Code IndexAdd Codota to your IDE (free)

How to use
isInfoEnabled
method
in
org.apache.avalon.framework.logger.Logger

Best Java code snippets using org.apache.avalon.framework.logger.Logger.isInfoEnabled (Showing top 20 results out of 315)

  • Common ways to obtain Logger
private void myMethod () {
Logger l =
  • Codota IconLoggerManager m_loggerManager;String categoryName;m_loggerManager.getLoggerForCategory(categoryName)
  • Codota IconLoggerManager m_loggerManager;m_loggerManager.getDefaultLogger()
  • Smart code suggestions by Codota
}
origin: commons-logging/commons-logging

/**
 * Is logging to <code>org.apache.avalon.framework.logger.Logger.info</code> enabled?
 * @see org.apache.commons.logging.Log#isInfoEnabled()
 */
public boolean isInfoEnabled() {
  return getLogger().isInfoEnabled();
}
origin: commons-logging/commons-logging

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @param t log this cause
 * @see org.apache.commons.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message), t);
  }
}
origin: commons-logging/commons-logging

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @see org.apache.commons.logging.Log#info(Object)
 */
public void info(Object message) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message));
  }
}
origin: camunda/camunda-bpm-platform

/**
 * Is logging to
 * <code>org.apache.avalon.framework.logger.Logger.info</code> enabled?
 * @see org.apache.commons.logging.Log#isInfoEnabled()
 */
public boolean isInfoEnabled() {
  return getLogger().isInfoEnabled();
}
origin: camunda/camunda-bpm-platform

/**
 * Logs a message with
 * <code>org.apache.avalon.framework.logger.Logger.info</code>.
 * 
 * @param message to log
 * @see org.apache.commons.logging.Log#info(Object)
 */
public void info(Object message) {
  if (getLogger().isInfoEnabled()) getLogger().info(String.valueOf(message));
}
origin: camunda/camunda-bpm-platform

/**
 * Logs a message with
 * <code>org.apache.avalon.framework.logger.Logger.info</code>.
 * 
 * @param message to log
 * @param t log this cause
 * @see org.apache.commons.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) getLogger().info(String.valueOf(message), t);
}
origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Is logging to <code>org.apache.avalon.framework.logger.Logger.info</code> enabled?
 * @see org.apache.commons.logging.Log#isInfoEnabled()
 */
public boolean isInfoEnabled() {
  return getLogger().isInfoEnabled();
}
origin: apache/activemq-artemis

/**
 * Is logging to <code>org.apache.avalon.framework.logger.Logger.info</code> enabled?
 * @see org.apache.activemq.artemis.shaded.org.apache.commons.logging.Log#isInfoEnabled()
 */
public boolean isInfoEnabled() {
  return getLogger().isInfoEnabled();
}
origin: apache/activemq-artemis

/**
 * Is logging to <code>org.apache.avalon.framework.logger.Logger.info</code> enabled?
 * @see org.apache.activemq.artemis.shaded.org.apache.commons.logging.Log#isInfoEnabled()
 */
public boolean isInfoEnabled() {
  return getLogger().isInfoEnabled();
}
origin: harbby/presto-connectors

/**
 * Is logging to <code>org.apache.avalon.framework.logger.Logger.info</code> enabled?
 * @see com.facebook.presto.hbase.$internal.org.apache.commons.logging.Log#isInfoEnabled()
 */
public boolean isInfoEnabled() {
  return getLogger().isInfoEnabled();
}
origin: org.apache.excalibur.containerkit/excalibur-logger

public boolean isInfoEnabled()
{
  final Logger logger = getLoggerLight();
  return logger.isInfoEnabled();
}
origin: apache/activemq-artemis

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @param t log this cause
 * @see org.apache.activemq.artemis.shaded.org.apache.commons.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message), t);
  }
}
origin: org.apache.activemq/artemis-jms-client-all

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @param t log this cause
 * @see org.apache.activemq.artemis.shaded.org.apache.commons.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message), t);
  }
}
origin: org.apache.fulcrum/fulcrum-localization

/**
 * Called the first time the Service is used.
 */
public void initialize() throws Exception
{
  // initBundleNames(null);
  defaultLocale = new Locale(defaultLanguage, defaultCountry);
  if (getLogger().isInfoEnabled())
  {
    getLogger().info("Localization Service is Initialized now..");
  }
}

origin: at.bestsolution.efxclipse.eclipse/org.apache.commons.logging

/**
 * Logs a message with
 * <code>org.apache.avalon.framework.logger.Logger.info</code>.
 * 
 * @param message to log
 * @param t log this cause
 * @see org.apache.commons.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) getLogger().info(String.valueOf(message), t);
}
origin: apache/activemq-artemis

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @see org.apache.activemq.artemis.shaded.org.apache.commons.logging.Log#info(Object)
 */
public void info(Object message) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message));
  }
}
origin: apache/activemq-artemis

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @see org.apache.activemq.artemis.shaded.org.apache.commons.logging.Log#info(Object)
 */
public void info(Object message) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message));
  }
}
origin: apache/activemq-artemis

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @param t log this cause
 * @see org.apache.activemq.artemis.shaded.org.apache.commons.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message), t);
  }
}
origin: harbby/presto-connectors

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @param t log this cause
 * @see com.facebook.presto.hbase.$internal.org.apache.commons.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message), t);
  }
}
origin: org.apache.openjpa/openjpa-all

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.info</code>.
 *
 * @param message to log
 * @param t log this cause
 * @see org.apache.commons.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message), t);
  }
}
org.apache.avalon.framework.loggerLoggerisInfoEnabled

Javadoc

Determine if messages of priority "info" will be logged.

Popular methods of Logger

  • debug
    Log a debug message.
  • error
    Log a error message.
  • info
    Log a info message.
  • warn
    Log a warn message.
  • isDebugEnabled
    Determine if messages of priority "debug" will be logged.
  • getChildLogger
    Create a new child logger. The name of the child logger is [current-loggers-name].[passed-in-name] T
  • isWarnEnabled
    Determine if messages of priority "warn" will be logged.
  • isErrorEnabled
    Determine if messages of priority "error" will be logged.
  • isFatalErrorEnabled
    Determine if messages of priority "fatalError" will be logged.
  • fatalError
    Log a fatalError message.

Popular in Java

  • Updating database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • getSharedPreferences (Context)
  • getContentResolver (Context)
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • Vector (java.util)
    The Vector class implements a growable array of objects. Like an array, it contains components that
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now