diff --git a/CHANGELOG.md b/CHANGELOG.md index c456e8c8153..58cf77a733a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,11 +62,10 @@ Here is an overview of all new **experimental** features: - **General**: Add parameter queryParameters to prometheus-scaler ([#4962](https://github.com/kedacore/keda/issues/4962)) - **General**: Support TriggerAuthentication properties from ConfigMap ([#4830](https://github.com/kedacore/keda/issues/4830)) -- **General**: TODO ([#XXX](https://github.com/kedacore/keda/issues/XXX)) - **Hashicorp Vault**: Add support to get secret that needs write operation (e.g. pki) ([#5067](https://github.com/kedacore/keda/issues/5067)) - **Kafka Scaler**: Ability to set upper bound to the number of partitions with lag ([#3997](https://github.com/kedacore/keda/issues/3997)) -- **Kafka Scaler**: Add support for Kerberos authentication (SASL / GSSAPI) ([#4836](https://github.com/kedacore/keda/issues/4836)) - **Kafka Scaler**: Add more logging to check Sarama DescribeTopics method ([#5102](https://github.com/kedacore/keda/issues/5102)) +- **Kafka Scaler**: Add support for Kerberos authentication (SASL / GSSAPI) ([#4836](https://github.com/kedacore/keda/issues/4836)) - **Prometheus Metrics**: Introduce paused ScaledObjects in Prometheus metrics ([#4430](https://github.com/kedacore/keda/issues/4430)) - **Pulsar Scaler**: support endpointParams in pulsar oauth ([#5069](https://github.com/kedacore/keda/issues/5069)) diff --git a/pkg/scalers/kafka_scaler.go b/pkg/scalers/kafka_scaler.go index abad65e7203..6c58e5efb9b 100644 --- a/pkg/scalers/kafka_scaler.go +++ b/pkg/scalers/kafka_scaler.go @@ -594,7 +594,7 @@ func (s *kafkaScaler) getTopicPartitions() (map[string][]int32, error) { if err != nil { return nil, fmt.Errorf("error describing topics: %w", err) } - s.logger.Info( + s.logger.V(1).Info( fmt.Sprintf("with topic name %s the list of topic metadata is %v", topicsToDescribe, topicsMetadata), )