Skip to content

Commit

Permalink
Fixed mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
tdas committed Nov 13, 2014
1 parent 14630aa commit 149948b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,9 @@ class ReliableKafkaReceiver[

ZkUtils.updatePersistentPath(zkClient, zkPath, offset.toString)
} catch {
case e: Exception => logWarning(s"Exception during commit offset $offset for topic" +
s"${topicAndPart.topic}, partition ${topicAndPart.partition}", t)
case e: Exception =>
logWarning(s"Exception during commit offset $offset for topic" +
s"${topicAndPart.topic}, partition ${topicAndPart.partition}", e)
}

logInfo(s"Committed offset $offset for topic ${topicAndPart.topic}, " +
Expand Down

0 comments on commit 149948b

Please sign in to comment.