码迷,mamicode.com
首页 > 其他好文 > 详细

日志如何打印异常堆栈信息。

时间:2014-12-12 22:17:25      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   for   java   on   2014   log   ef   

package com.doctor.slf4j;

import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * 如何打印异常堆栈信息。
 * @author doctor
 *
 * @time   2014年12月11日 上午9:49:00
 */
public class LogThrowableRule {
	private final Logger log = LoggerFactory.getLogger(getClass());
	
	/**
	 * 这种e.toString()方法只是得到异常信息,异常堆栈没有得到
	 */
	@Test
	public void test_wrongLogThrowable(){
		try {
			int test = 10/0;
		} catch (Exception e) {
			log.error("error" + e);
			//main  ERROR c.d.s.LogThrowableRule -
			//                         errorjava.lang.ArithmeticException: / by zero
		}
	}
	
	/**
	 * 得到异常堆栈信息正确的log方法
	 */
	@Test
	public void test_rightWayGetInfoForThrowable(){
		int a = 10;
		int b = 0;
		try {
			
			int test = a/b;
		} catch (Exception e) {
			log.error("error" ,e);
			//main  ERROR c.d.s.LogThrowableRule -
			//			error
			//java.lang.ArithmeticException: / by zero
			//          at com.doctor.slf4j.LogThrowableRule.test_rightWayGetInfoForThrowable(LogThrowableRule.java:35) ~[classes/:na]
			//          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_11]
			//          .............
			
			String msg = String.format("{error:'%s/%s'}", a,b);//string带参数,利用String.format
			log.error(msg, e);
		}
	}
}

日志如何打印异常堆栈信息。

标签:io   ar   os   for   java   on   2014   log   ef   

原文地址:http://blog.csdn.net/doctor_who2004/article/details/41899377

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!