首页
编程
java
php
前端
首页
编程
java
php
前端
springboot使用log4j2,日志级别debug,怎么关闭redis的debug日志
如题springboot使用log4j2,日志级别debug,怎么关闭redis的debug日志,求解答
可以看看这篇:
关掉SpringBoot中的debug日志_up up!的博客-CSDN博客
在Resources目录下添加文件logback.xml,重启SpringBoot<?xml version="1.0" encoding="UTF-8"?><configuration> <include resource="org/springframework/boot/logging/logback/base.xml" /> <logger name="*" level="warn" /></configuration>
https://blog.csdn.net/weixin_41891385/article/details/113275333
点击展开全文