org.apache.avalon.framework.logger.Logger类的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(6.5k)|赞(0)|评价(0)|浏览(339)

本文整理了Java中org.apache.avalon.framework.logger.Logger类的一些代码示例,展示了Logger类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger类的具体详情如下:
包路径:org.apache.avalon.framework.logger.Logger
类名称:Logger

Logger介绍

[英]This is a facade for the different logging subsystems. It offers a simplified interface that follows IOC patterns and a simplified priority/level/severity abstraction.
[中]这是不同日志子系统的外观。它提供了一个遵循IOC模式的简化接口和一个简化的优先级/级别/严重性抽象。

代码示例

代码示例来源:origin: commons-logging/commons-logging

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.debug</code>.
 *
 * @param message to log
 * @see org.apache.commons.logging.Log#trace(Object)
 */
public void trace(Object message) {
  if (getLogger().isDebugEnabled()) {
    getLogger().debug(String.valueOf(message));
  }
}

代码示例来源:origin: commons-logging/commons-logging

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.error</code>.
 *
 * @param message to log
 * @see org.apache.commons.logging.Log#error(Object)
 */
public void error(Object message) {
  if (getLogger().isErrorEnabled()) {
    getLogger().error(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
 * @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.warn</code>.
 *
 * @param message to log
 * @param t log this cause
 * @see org.apache.commons.logging.Log#warn(Object, Throwable)
 */
public void warn(Object message, Throwable t) {
  if (getLogger().isWarnEnabled()) {
    getLogger().warn(String.valueOf(message), t);
  }
}

代码示例来源:origin: commons-logging/commons-logging

/**
 * Logs a message with <code>org.apache.avalon.framework.logger.Logger.fatalError</code>.
 *
 * @param message to log
 * @see org.apache.commons.logging.Log#fatal(Object)
 */
public void fatal(Object message) {
  if (getLogger().isFatalErrorEnabled()) {
    getLogger().fatalError(String.valueOf(message));
  }
}

代码示例来源:origin: org.apache.fulcrum/fulcrum-testcontainer

/**
 * Disposes of the container and releases resources.
 */
public void dispose()
{
  getLogger().debug("Disposing of container...");
  if( this.manager != null )
  {
    this.manager.dispose();
  }
  getLogger().info("YAFFI Container has been disposed.");
}

代码示例来源:origin: commons-logging/commons-logging

/**
 * Constructs an <code>AvalonLogger</code> that will log to a child
 * of the <code>Logger</code> set by calling {@link #setDefaultLogger}.
 *
 * @param name the name of the avalon logger implementation to delegate to
 */
public AvalonLogger(String name) {
  if (defaultLogger == null) {
    throw new NullPointerException("default logger has to be specified if this constructor is used!");
  }
  this.logger = defaultLogger.getChildLogger(name);
}

代码示例来源:origin: commons-logging/commons-logging

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

代码示例来源:origin: commons-logging/commons-logging

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

代码示例来源:origin: org.codehaus.plexus/plexus-ftpd

public void execute() {
    try {
      spy.request(str + '\n');
    }
    catch(Exception ex) {
      mSpy = null;
      mConfig.getLogger().error("BaseFtpConnection.spyPrint()", ex);
    }
  }
};

代码示例来源: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: 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: org.apache.excalibur.containerkit/excalibur-logger

public void warn( final String message, final Throwable throwable )
{
  final Logger logger = getLogger();
  try
  {
    logger.warn( message, throwable );
  }
  finally
  {
    releaseLogger();
  }
}

代码示例来源:origin: commons-logging/commons-logging

/**
 * Is logging to <code>org.apache.avalon.framework.logger.Logger.fatalError</code> enabled?
 * @see org.apache.commons.logging.Log#isFatalEnabled()
 */
public boolean isFatalEnabled() {
  return getLogger().isFatalErrorEnabled();
}

代码示例来源:origin: commons-logging/commons-logging

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

代码示例来源:origin: commons-logging/commons-logging

/**
   * Logs a message with <code>org.apache.avalon.framework.logger.Logger.warn</code>.
   *
   * @param message to log
   * @see org.apache.commons.logging.Log#warn(Object)
   */
  public void warn(Object message) {
    if (getLogger().isWarnEnabled()) {
      getLogger().warn(String.valueOf(message));
    }
  }
}

代码示例来源:origin: commons-logging/commons-logging

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

代码示例来源:origin: camunda/camunda-bpm-platform

/**
 * Constructs an <code>AvalonLogger</code> that will log to a child
 * of the <code>Logger</code> set by calling {@link #setDefaultLogger}.
 * @param name the name of the avalon logger implementation to delegate to
 */
public AvalonLogger(String name) {
  if (defaultLogger == null)
    throw new NullPointerException("default logger has to be specified if this constructor is used!");
  this.logger = defaultLogger.getChildLogger(name);
}

代码示例来源:origin: commons-logging/commons-logging

/**
 * Is logging to <code>org.apache.avalon.framework.logger.Logger.debug</code> enabled?
 * @see org.apache.commons.logging.Log#isTraceEnabled()
 */
public boolean isTraceEnabled() {
  return getLogger().isDebugEnabled();
}

代码示例来源:origin: camunda/camunda-bpm-platform

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

相关文章