diff options
author | Enrico Canzonieri <ecanzonieri@gmail.com> | 2015-06-19 10:17:49 -0700 |
---|---|---|
committer | Enrico Canzonieri <ecanzonieri@gmail.com> | 2015-06-19 10:17:49 -0700 |
commit | f74d712adfda21f6c24949b1d00791c0de7bb049 (patch) | |
tree | 73ccf9905212681158a66523ce797932a42badd5 /kafka/client.py | |
parent | 915a9ce0d1c565fcc16621f5abb46fda310c4552 (diff) | |
download | kafka-python-f74d712adfda21f6c24949b1d00791c0de7bb049.tar.gz |
Lower logging level on replica not available and commit
Diffstat (limited to 'kafka/client.py')
-rw-r--r-- | kafka/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |