本文介绍了Lombok项目@ Slf4j外部配置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我正在编写简单的Spring Boot(版本1.56)应用程序.并开始使用Project lombok,特别是@ Slf4j功能进行日志记录.日志记录工作正常,但是如何配置此记录器?确切地说,我希望能够使用外部文件来更改日志记录级别.
so I'am writing simple Spring Boot(version 1.56) Application. And started using Project lombok, specifically@Slf4j feature for logging. Logging works fine, but how can I configure this logger? To be precise I want to be able to change logging level using external file.
推荐答案
与lombok
无关,它与slf4j
配置有关.应该通过更新您的application.properties
文件来完成.
It has nothing to do with lombok
, it is about slf4j
configuration. It should be done by updating your application.properties
file.
这篇关于Lombok项目@ Slf4j外部配置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!