springboot 打印日志
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在实际项目中,我们的程序都是运行在linux上,有错误时也不能在本地的控制台上直观看到,所有合理打印日志对于程序员迅速定位到错误;
我的项目是springboot,打印日志时的步骤:
1.application.yml配置文件中配置日志级别和日志文件的路径
logging:
level:
learning: debug
file: log/app-user.log
2.在controller中定义log对象
private static final Logger log = LoggerFactory.getLogger(VehicelController.class);
3.打印日志
1.在关键的节点使用info打印
log.info("程序开始")
log.info("程序结束")
2.在处理异常处打印error
try{
.....
.....
}catch (Exception e) {
e.printStackTrace();
log.error("异常{}",e);;
}
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)