Reputation: 1596
I am developing a Spring Boot application, where I will be using two dependencies -
kafka-clients
kafka-clients
internallyI want to adjust the logging levels for the kafka-clients
which is added directly into my project but I want to turn off the logging for the kafka-clients
that is added in the other library.
How can we achieve this?
If I add <logger name="org.apache.kafka" level="off"/>
then it is turning off logging for both the kafka-clients
.
Upvotes: 3
Views: 62