doForCurrentOffsets((tp, offset) ->
{
Long expected = offsetsToCheck.get(tp) + 1;
- log.debug("Checking, if the offset for {} is {}", tp, expected);
+ log.debug("TEST: Comparing the expected offset of {} for {} to {}", expected, tp, offset);
assertThat(offset)
.describedAs("Committed offset corresponds to the offset of the consumer")
.isEqualTo(expected);
Long newOffset = newOffsets.get(tp);
if (!oldOffset.equals(newOffset))
{
- log.debug("Progress for {}: {} -> {}", tp, oldOffset, newOffset);
+ log.debug("TEST: Progress for {}: {} -> {}", tp, oldOffset, newOffset);
withProgress.add(tp);
}
});
+ log.debug("TEST: Offsets with progress: {}", withProgress);
assertThat(withProgress)
.describedAs("Some offsets must have changed, compared to the old offset-positions")
.isNotEmpty();
if (metadata != null)
{
log.debug(
- "{}|{} - {}={}",
+ "TEST: Sending partition={}, offset={} - {}={}",
metadata.partition(),
metadata.offset(),
record.key(),
else
{
log.warn(
- "Exception for {}={}: {}",
+ "TEST: Exception for {}={}: {}",
record.key(),
record.value(),
e.toString());
record ->
{
receivedRecords.add(record);
+ log.debug("TEST: Processing record #{}: {}", receivedRecords.size(), record.value());
newOffsets.put(
new TopicPartition(record.topic(), record.partition()),
record.offset());
}
catch (Exception e)
{
- log.info("Exception while stopping the consumer: {}", e.toString());
+ log.info("TEST: Exception while stopping the consumer: {}", e.toString());
}
}