Skip to content

Commit

Permalink
LOG lines have wrong number of arguments (#242)
Browse files Browse the repository at this point in the history
LOG errors lines have wrong number of arguments in ProduceService -> Fix this
Signed-off-by: Andrew Choi <[email protected]>
  • Loading branch information
Andrew Choi authored Apr 17, 2020
1 parent f681dc4 commit cd35295
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/linkedin/kmf/services/ProduceService.java
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,9 @@ public void run() {
initializeStateForPartitions(currentPartitionNum);
LOG.info("New partitions added to monitoring.");
} catch (InterruptedException e) {
LOG.error("InterruptedException occurred {}.", e);
LOG.error("InterruptedException occurred.", e);
} catch (ExecutionException e) {
LOG.error("ExecutionException occurred {}.", e);
LOG.error("ExecutionException occurred.", e);
}
}
}
Expand Down

0 comments on commit cd35295

Please sign in to comment.