Github user srdo commented on a diff in the pull request: https://github.com/apache/storm/pull/2367#discussion_r144080187 --- Diff: external/storm-kafka-client/src/main/java/org/apache/storm/kafka/spout/internal/OffsetManager.java --- @@ -163,8 +167,9 @@ public long commit(OffsetAndMetadata committedOffset) { LOG.trace("{}", this); - LOG.debug("Committed [{}] offsets in the range [{}-{}] for topic-partition [{}].", - numCommittedOffsets, preCommitCommittedOffsets + 1, this.committedOffset, tp); + LOG.debug("Committed [{}] offsets in the range [{}-{}] for topic-partition [{}]." + + " Processing will resume at [{}] if the spout restarts.", --- End diff -- Good catch, will fix
---