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

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

Best Java code snippets using org.apache.avalon.framework.logger.Logger.info (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

/**
 * 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: 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: 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: 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: org.codehaus.plexus/plexus-ftpd

  /**
   * Close the user manager - remove existing entries.
   */
  public void dispose() {
    getLogger().info("Closing properties user manager...");
    if (mUserData != null) {
      mUserData.clear();
      mUserData = null;
    }
  }
}
origin: org.apache.excalibur.fortress.container/excalibur-fortress-container-impl

public Object lookup(String role) throws ServiceException
{
  if ( Pipe.class.getName().equals( role ) )
  {
    m_ealogger.info("Using deprecated role (Queue.ROLE) for the Command Sink.  Use \"Sink.ROLE\" instead.");
    return lookup(Sink.class.getName());
  }
  return super.lookup( role );
}
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: 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
 * @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: org.apache.openjpa/openjpa-all

/**
 * 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: 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.tomcat.extras/tomcat-extras-juli-adapters

/**
 * 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.juli.logging.Log#info(Object, Throwable)
 */
public void info(Object message, Throwable t) {
  if (getLogger().isInfoEnabled()) {
    getLogger().info(String.valueOf(message), t);
  }
}
origin: org.apache.tomcat.extras/tomcat-extras-juli-adapters

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

/**
 * Increment delete count.
 */
void setDelete(File fl, FtpUser user) {
  ++miNbrDelete;
  mConfig.getLogger().info("File delete : " + user.getName() + " - " + fl.getAbsolutePath());
  notifyDelete(fl, user);
}
origin: org.codehaus.plexus/plexus-ftpd

/**
 * Increment upload count.
 */
void setUpload(File fl, FtpUser user, long sz) {
  ++miNbrUpload;
  mlBytesUpload += sz;
  mConfig.getLogger().info("File upload : " + user.getName() + " - " + fl.getAbsolutePath());
  notifyUpload(fl, user);
}
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);
  }
}
origin: org.apache.fulcrum/fulcrum-testcontainer

/**
 * Disposes of the container and releases resources
 */
public void dispose()
{
  getLogger().debug("Disposing of container...");
  this.manager.dispose();
  getLogger().info("Container has been disposed.");
}
/**
origin: org.apache.fulcrum/fulcrum-yaafi

public void onEntry(AvalonInterceptorContext interceptorContext) {
  if (this.isServiceMonitored(interceptorContext) && this.getLogger().isInfoEnabled() == true) {
    String msg = this.toString(interceptorContext, null, ON_ENTRY);
    this.getLogger().info(msg);
    this.createStopWatch(interceptorContext);
  }
}
org.apache.avalon.framework.loggerLoggerinfo

Javadoc

Log a info message.

Popular methods of Logger

  • debug
    Log a debug message.
  • error
    Log a error 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.
  • isInfoEnabled
    Determine if messages of priority "info" 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

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • startActivity (Activity)
  • findViewById (Activity)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Stack (java.util)
    The Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement.A servlet is a small Java program that runs within
  • JFrame (javax.swing)
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