mirror of https://github.com/apache/kafka.git
MINOR: Remove redundant placeholder in log message (#7016)
Reviewers: Jason Gustafson <jason@confluent.io>
This commit is contained in:
parent
11337afecb
commit
0b40d27647
|
|
@ -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 {}",
|
||||
|
|
|
|||
Loading…
Reference in New Issue