79102255

Date: 2024-10-18 13:24:06
Score: 0.5
Natty:
Report link

If you want to disable Kafka logs, you can configure your application.yml like that :

logging:
  level:
    org.apache.kafka: OFF
    kafka: OFF
    kafka.consumer: OFF
    kafka.producer: OFF

This config will turn off all Kafka related logs, including producer, consumer and every other Kafka components.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MrSolarius