I am using Kafka producer client and i don't have any log4j configuration in my project.
On running, the program prints a lot of Kafka Debug logs which i really don't want.
So, i tried to add a log4j.properties to set log level to ERROR as below which does not seem to work:
log4j.rootLogger=ERROR
How do i change Kafka Log Level?
Cannot set level: WARNING for 'org.apache.kafka'
any ideas? – Sidekick