Tabnine Logo
Logger.isInfoEnabled
Code IndexAdd Tabnine 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)

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
 * @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: 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: 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

  • Making http requests using okhttp
  • getContentResolver (Context)
  • getSharedPreferences (Context)
  • getExternalFilesDir (Context)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • JTable (javax.swing)
  • Top plugins for WebStorm
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