-
I'm using Strimzi Kafka Operator version
Originally I had just The settings I added seems to have at least filtered out the logs I specified. My understanding is that anything I don't specify defaults to the root logger level, Here are some of the logs I'm seeing after setting that configuration. I was not seeing these before:
Is there something I'm doing wrong or is it possible this is a new bug or regression? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The default logging configuration for Kafka is based on this file: https://github.com/strimzi/strimzi-kafka-operator/blob/main/cluster-operator/src/main/resources/default-logging/KafkaCluster.properties -> so your inline configurations are essentially added to it. As you can see, it has some loggers enabled at TRACE levels. So I think what you see is expected and if you want to avoid it, you should configure all the different loggers. Please not ethat the default Strimzi configuration is (at least originally - it might have changed over time here and there) based on the Kafka default configuration: https://github.com/apache/kafka/blob/trunk/config/log4j.properties |
Beta Was this translation helpful? Give feedback.
The default logging configuration for Kafka is based on this file: https://github.com/strimzi/strimzi-kafka-operator/blob/main/cluster-operator/src/main/resources/default-logging/KafkaCluster.properties -> so your inline configurations are essentially added to it. As you can see, it has some loggers enabled at TRACE levels. So I think what you see is expected and if you want to avoid it, you should configure all the different loggers.
Please not ethat the default Strimzi configuration is (at least originally - it might have changed over time here and there) based on the Kafka default configuration: https://github.com/apache/kafka/blob/trunk/config/log4j.properties