From f74d712adfda21f6c24949b1d00791c0de7bb049 Mon Sep 17 00:00:00 2001 From: Enrico Canzonieri Date: Fri, 19 Jun 2015 10:17:49 -0700 Subject: Lower logging level on replica not available and commit --- kafka/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kafka/client.py') diff --git a/kafka/client.py b/kafka/client.py index cf29eda..817c621 100644 --- a/kafka/client.py +++ b/kafka/client.py @@ -409,7 +409,7 @@ class KafkaClient(object): # this error code is provided for admin purposes only # we never talk to replicas, only the leader except ReplicaNotAvailableError: - log.warning('Some (non-leader) replicas not available for topic %s partition %d', topic, partition) + log.debug('Some (non-leader) replicas not available for topic %s partition %d', topic, partition) # If Known Broker, topic_partition -> BrokerMetadata if leader in self.brokers: -- cgit v1.2.1