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

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

本文整理了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

  1. public void start()
  2. {
  3. super.start();
  4. if ( getLogger().isDebugEnabled() )
  5. {
  6. getLogger().debug( getThreadStartedMessage(
  7. getLocale(), new Long( this.pollIntervalMillis ) ) );
  8. }
  9. }

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

  1. this.getLogger().debug(
  2. this.getCandidateSchemaMessage(
  3. this.getLocale(),

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

  1. /**
  2. * Increases the capacity of the instance, if necessary, to ensure that it
  3. * can hold at least the number of bytes specified by the minimum capacity
  4. * argument.
  5. *
  6. * @param minimumCapacity the minimum capacity to ensure.
  7. */
  8. public void ensureCapacity( final int minimumCapacity )
  9. {
  10. final int oldLength = this.data.length;
  11. while ( this.data.length < minimumCapacity )
  12. {
  13. final byte[] newData = this.getMemoryManager().allocateBytes(
  14. this.data.length * 2 >= minimumCapacity
  15. ? this.data.length * 2
  16. : minimumCapacity );
  17. Arrays.fill( newData, (byte) 0 );
  18. System.arraycopy( this.data, 0, newData, 0, this.data.length );
  19. this.data = newData;
  20. }
  21. if ( oldLength != this.data.length &&
  22. this.getLogger().isDebugEnabled() )
  23. {
  24. this.getLogger().debug(
  25. this.getLogResizeMessage( this.getLocale(),
  26. new Long( this.data.length ) ) );
  27. }
  28. }

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

  1. this.getLogger().debug(
  2. this.getResolvedSystemIdMessage(
  3. this.getLocale(), systemId,

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

  1. this.filePointer += len;
  2. this.getLogger().debug(
  3. this.getWriteBypassesCacheMessage(
  4. this.getLocale(),

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

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

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

  1. /**
  2. * Test the various logger methods to not throw any exceptions.
  3. */
  4. public void testLog() throws Exception
  5. {
  6. assert this.getLogger() != null;
  7. this.getLogger().debug( "TEST" );
  8. this.getLogger().debug( new Exception() );
  9. this.getLogger().error( "TEST" );
  10. this.getLogger().error( new Exception() );
  11. this.getLogger().fatal( "TEST" );
  12. this.getLogger().fatal( new Exception() );
  13. this.getLogger().info( "TEST" );
  14. this.getLogger().info( new Exception() );
  15. this.getLogger().trace( "TEST" );
  16. this.getLogger().trace( new Exception() );
  17. this.getLogger().warn( "TEST" );
  18. this.getLogger().warn( new Exception() );
  19. }

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

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

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

  1. this.filePointer += len;
  2. this.getLogger().debug(
  3. this.getReadBypassesCacheMessage(
  4. this.getLocale(),

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

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

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

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

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

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

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

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

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

  1. this.getLogger().debug( this.getAddRecordInfoMessage(
  2. this.getLocale(), String.valueOf( newVersion.getChangeLabel() ),
  3. newVersion.getSerialNumber() ) );
  4. this.getLogger().debug( this.getModifyRecordInfoMessage(
  5. this.getLocale(), String.valueOf( newVersion.getChangeLabel() ),
  6. newVersion.getSerialNumber() ) );
  7. this.getLogger().debug( this.getRemoveRecordInfoMessage(
  8. this.getLocale(), String.valueOf( oldVersion.getChangeLabel() ),
  9. oldVersion.getSerialNumber() ) );

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

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

相关文章