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

日志管理

时间:2018-02-09 15:21:05      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:factory   cto   stat   static   pos   class   final   exce   try   

2018-02-09 11:29:43

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class LoggerDemo {
private static final Logger logger =LoggerFactory.getLogger(LoggerDemo.class);
public static void main(String[] args) {
String str="abc";
try {
int i=Integer.parseInt(str);
} catch (Exception e) {
logger.error(e.getMessage(),e);
logger.debug(e.getMessage());
}
}
}

日志管理

标签:factory   cto   stat   static   pos   class   final   exce   try   

原文地址:https://www.cnblogs.com/s-d-g/p/8434780.html

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