当前位置:   article > 正文

log.isDebugEnabled( ) 方法的使用

log.isdebugenabled()

代码示范:

  1. import org.apache.commons.logging.Log;
  2. import org.apache.commons.logging.LogFactory;
  3. /**
  4. * 测试log.isDebugEnabled( )的使用。  
  5. */
  6. public class TestDebug{
  7.     // 声明日志对象
  8.     public static final Log log = LogFactory.getLog(TestDebug.class);
  9.     
  10.     public void testMethod(String str){
  11.         /**
  12.         *  log.isDebugEnable() 返回boolean值,如果当前启用了debug则返回true
  13.         */
  14.         if(log.isDebugEnable()){
  15.             log.debug("测试"+str);// log.debug()方法也只会在debug模式下输出
  16.         }
  17.     }
  18. }

以上代码就可以说明log.isDebugEnable()的用法。

虽然  log.debug(  ) 方法也只会在debug模式下输出,但是当所输入的内容需要事先准备的参数,如一个map对象,那样就会先转化成map.toString( )。如果我们在外部先进行log.isDebugEnable( ),这样会效率高一些。

转载于:https://my.oschina.net/wuminghai/blog/612448

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号