slf4j应用
package com.relicure.test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Created by IntelliJ IDEA.
* Date: 11-10-9
* Time: 下午3:15
* To change this template use File | Settings | File Templates.
*/
public class LogTest {
private static final Logger logger = LoggerFactory.getLogger(LogTest.class);
public LogTest(int p) {
logger.info("the paramter is {}",p);
}
public static void main(String args[]) {
new LogTest(457);
}
}