Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
import org.slf4j.LoggerFactory;
import scala.Option;

import java.util.concurrent.TimeUnit;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
Expand Down Expand Up @@ -810,7 +811,8 @@ public void onCompletion(RecordMetadata metadata, Exception exception) {
log.trace("Error sending message to Kafka due to " + exception.getMessage());
}
if (log.isDebugEnabled()) {
long batchElapsedTime = System.currentTimeMillis() - startTime;
long batchElapsedTime = System.currentTimeMillis()
- TimeUnit.NANOSECONDS.toMillis(startTime);
if (metadata != null) {
log.debug("Acked message_no " + index + ": " + metadata.topic() + "-" +
metadata.partition() + "-" + metadata.offset() + "-" + batchElapsedTime);
Expand Down