From cd35295fd47db31fe26b21112a3ecf1d3b977f9f Mon Sep 17 00:00:00 2001 From: Andrew Choi Date: Thu, 16 Apr 2020 22:49:36 -0700 Subject: [PATCH] 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 --- src/main/java/com/linkedin/kmf/services/ProduceService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/linkedin/kmf/services/ProduceService.java b/src/main/java/com/linkedin/kmf/services/ProduceService.java index ed17d88d..0094b280 100644 --- a/src/main/java/com/linkedin/kmf/services/ProduceService.java +++ b/src/main/java/com/linkedin/kmf/services/ProduceService.java @@ -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); } } }