java 日志 基础理解

1.下载log4j的包(log4j-1.2.14.jar commons-logging.jar)

2.写入log4j.properties配置文件,在src目录下面

3.源程序解析

package com.log;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.log4j.Logger;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Level;

public class Log4jTest {
    public static void main(String argv[]) {    
        // Create a logger by the name of class Log4jTest.
        Logger logger = Logger.getLogger(Log4jTest.class.getName());
       /*
        * 这个Log必须和上面的那个Logger一起用,下面那个才能用,不如舍弃Log
        * 因为这个Log是common的一个包,它是以来log4j的,舍弃
        */
        Log myLog = LogFactory.getLog(Log4jTest.class);
        // Use the default configuration.
        /**
         * 当在src下放入了log4j.properties后,那么 BasicConfigurator.configure()就不需要了;
         */
          BasicConfigurator.configure();
        // PropertyConfigurator.configure ("c:/log4j.properties");引用文件目录 
        // Set the logger level to Level.INFO
         logger.setLevel(Level.INFO);

        // This request will be disabled since Level.DEBUG < Level.INFO.
        logger.debug("This is debug.");

        // These requests will be enabled.
          logger.info("This is an info.");
          logger.warn("This is a warning.");
          logger.error("This is an error.");
          logger.fatal("This is a fatal error.");
          myLog.warn("this is my_Log waring");
          myLog.debug("this is my_debug...");
          myLog.info("This is my_info.");
        return;
    }
}

4.参考链接

http://blog.sina.com.cn/s/blog_8eee7fb60101rfau.html

http://blog.csdn.net/killer_zr/article/details/7188140

http://blog.csdn.net/anlina_1984/article/details/5313023


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值