1

Using spring boot application.yml and logback.xml property files.

I tried with below application.yml properties but its not working.

spring.logging.level.org.apache.kafka:
 clients.consumer.ConsumerConfig: INFO
 clients.producer.ProducerConfig: INFO
 common.utils.AppInfoParser: INFO
shizhen
  • 12,251
  • 9
  • 52
  • 88

1 Answers1

2

Try putting this in config file

<logger name="org.apache.zookeeper" level="OFF"/>

Similarly for kafka.

azhar
  • 167
  • 11