首先要导入 slf4j包中的2个类
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
再定义如下
private final static Logger LOG= LoggerFactory.getLogger(MyClass.class);
再使用
if(LOG.isDebugEnabled()){
LOG.debug("can not find order {} ",orderCode);
}
显然上述使用占位符{}方式比下面的字符串连接更加高效,
LOG.debug("can not find order "+ orderCode);
原文地址:https://www.cnblogs.com/wahaha603/p/6888247.html