Romas Augustinavičius
Romas Augustinavičius

Reputation: 443

Project Lombok @Slf4j external configuration

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.

Upvotes: 6

Views: 18131

Answers (1)

mcelikel
mcelikel

Reputation: 148

It has nothing to do with lombok, it is about slf4j configuration. It should be done by updating your application.properties file.

You can check here and here

Upvotes: 12

Related Questions