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

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

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

Logger.debug介绍

[英]Logs a message at log level debug.
[中]在调试日志级别记录消息。

代码示例

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

public void start()
{
  super.start();
  if ( getLogger().isDebugEnabled() )
  {
    getLogger().debug( getThreadStartedMessage(
      getLocale(), new Long( this.pollIntervalMillis ) ) );
  }
}

代码示例来源:origin: org.jdtaus.core.sax/jdtaus-core-entity-resolver

this.getLogger().debug(
  this.getCandidateSchemaMessage(
  this.getLocale(),

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

/**
 * Increases the capacity of the instance, if necessary, to ensure that it
 * can hold at least the number of bytes specified by the minimum capacity
 * argument.
 *
 * @param minimumCapacity the minimum capacity to ensure.
 */
public void ensureCapacity( final int minimumCapacity )
{
  final int oldLength = this.data.length;
  while ( this.data.length < minimumCapacity )
  {
    final byte[] newData = this.getMemoryManager().allocateBytes(
      this.data.length * 2 >= minimumCapacity
      ? this.data.length * 2
      : minimumCapacity );
    Arrays.fill( newData, (byte) 0 );
    System.arraycopy( this.data, 0, newData, 0, this.data.length );
    this.data = newData;
  }
  if ( oldLength != this.data.length &&
     this.getLogger().isDebugEnabled() )
  {
    this.getLogger().debug(
      this.getLogResizeMessage( this.getLocale(),
                   new Long( this.data.length ) ) );
  }
}

代码示例来源:origin: org.jdtaus.core.sax/jdtaus-core-entity-resolver

this.getLogger().debug(
  this.getResolvedSystemIdMessage(
  this.getLocale(), systemId,

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

this.filePointer += len;
this.getLogger().debug(
  this.getWriteBypassesCacheMessage(
  this.getLocale(),

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

this.getLogger().debug( e.toString() );

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

/**
 * Test the various logger methods to not throw any exceptions.
 */
public void testLog() throws Exception
{
  assert this.getLogger() != null;
  this.getLogger().debug( "TEST" );
  this.getLogger().debug( new Exception() );
  this.getLogger().error( "TEST" );
  this.getLogger().error( new Exception() );
  this.getLogger().fatal( "TEST" );
  this.getLogger().fatal( new Exception() );
  this.getLogger().info( "TEST" );
  this.getLogger().info( new Exception() );
  this.getLogger().trace( "TEST" );
  this.getLogger().trace( new Exception() );
  this.getLogger().warn( "TEST" );
  this.getLogger().warn( new Exception() );
}

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

this.getLogger().debug( e.toString() );

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

this.filePointer += len;
this.getLogger().debug(
  this.getReadBypassesCacheMessage(
  this.getLocale(),

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

this.getLogger().debug( ex.toString() );

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

this.getLogger().debug( this.getFileNameInfoMessage( this.getLocale(), resource.toExternalForm() ) );

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

this.getLogger().debug( ex.toString() );

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

this.getLogger().debug( e.toString() );

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

this.getLogger().debug( this.getAddRecordInfoMessage(
  this.getLocale(), String.valueOf( newVersion.getChangeLabel() ),
  newVersion.getSerialNumber() ) );
this.getLogger().debug( this.getModifyRecordInfoMessage(
  this.getLocale(), String.valueOf( newVersion.getChangeLabel() ),
  newVersion.getSerialNumber() ) );
  this.getLogger().debug( this.getRemoveRecordInfoMessage(
    this.getLocale(), String.valueOf( oldVersion.getChangeLabel() ),
    oldVersion.getSerialNumber() ) );

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

this.getLogger().debug( this.getOutdatedInfoMessage(
  this.getLocale(), record.getBankCode().format( Bankleitzahl.LETTER_FORMAT ) ) );

相关文章