Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kafka/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def load_metadata_for_topics(self, *topics):
# 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:
Expand Down
2 changes: 1 addition & 1 deletion kafka/consumer/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def commit(self, partitions=None):
if partitions is None: # commit all partitions
partitions = list(self.offsets.keys())

log.info('Committing new offsets for %s, partitions %s',
log.debug('Committing new offsets for %s, partitions %s',
self.topic, partitions)
for partition in partitions:
offset = self.offsets[partition]
Expand Down