Skip to content

Commit cd35295

Browse files
author
Andrew Choi
authored
LOG lines have wrong number of arguments (#242)
LOG errors lines have wrong number of arguments in ProduceService -> Fix this Signed-off-by: Andrew Choi <[email protected]>
1 parent f681dc4 commit cd35295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/linkedin/kmf/services/ProduceService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,9 @@ public void run() {
395395
initializeStateForPartitions(currentPartitionNum);
396396
LOG.info("New partitions added to monitoring.");
397397
} catch (InterruptedException e) {
398-
LOG.error("InterruptedException occurred {}.", e);
398+
LOG.error("InterruptedException occurred.", e);
399399
} catch (ExecutionException e) {
400-
LOG.error("ExecutionException occurred {}.", e);
400+
LOG.error("ExecutionException occurred.", e);
401401
}
402402
}
403403
}

0 commit comments

Comments
 (0)