org.jdtaus.core.logging.spi.Logger.isInfoEnabled()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(231)

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

Logger.isInfoEnabled介绍

[英]Getter for property infoEnabled.
[中]属性信息的Getter已启用。

代码示例

代码示例来源:origin: org.jdtaus.banking/jdtaus-banking-ri-textschluesselverzeichnis

doc = validatingParser.parse( stream );
else if ( this.getLogger().isInfoEnabled() )

代码示例来源:origin: org.jdtaus.banking.dtaus/jdtaus-banking-ri-dtaus

if ( this.getLogger().isInfoEnabled() )

代码示例来源:origin: org.jdtaus.core/jdtaus-core-it

/**
 * Tests the {@link Logger#isInfoEnabled() isXxxEnabled()} methods to not
 * throw any exceptions.
 */
public void testIsEnabled() throws Exception
{
  assert this.getLogger() != null;
  this.getLogger().isDebugEnabled();
  this.getLogger().isErrorEnabled();
  this.getLogger().isFatalEnabled();
  this.getLogger().isInfoEnabled();
  this.getLogger().isTraceEnabled();
  this.getLogger().isWarnEnabled();
}

代码示例来源:origin: org.jdtaus.banking/jdtaus-banking-utilities

if ( this.getLogger().isInfoEnabled() )

相关文章