MINOR: Remove redundant placeholder in log message (#7016)

Reviewers: Jason Gustafson <jason@confluent.io>
This commit is contained in:
Cheng Pan 2019-07-03 13:23:23 -05:00 committed by Jason Gustafson
parent 11337afecb
commit 0b40d27647
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ class WorkerSourceTask extends WorkerTask {
// timeouts, callbacks with exceptions should never be invoked in practice. If the
// user overrode these settings, the best we can do is notify them of the failure via
// logging.
log.error("{} failed to send record to {}: {}", WorkerSourceTask.this, topic, e);
log.error("{} failed to send record to {}:", WorkerSourceTask.this, topic, e);
log.debug("{} Failed record: {}", WorkerSourceTask.this, preTransformRecord);
} else {
log.trace("{} Wrote record successfully: topic {} partition {} offset {}",