标签:写日志 log get deb ati private 指定 stat info
a.导入log4j类
import org.apache.log4j.Logger;
b.在指定类中,写属性
private static Logger logger =
Logger.getLogger(指定类名.class);
c.在指定行写日志
logger.debug(“日志信息”);
logger.info(“信息”)
标签:写日志 log get deb ati private 指定 stat info
原文地址:http://www.cnblogs.com/liumeilin/p/7019590.html