Skip to content

Commit

Permalink
fix logger
Browse files Browse the repository at this point in the history
  • Loading branch information
kehuum committed Nov 14, 2023
1 parent c9887b4 commit 08c1b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/kafka/zookeeper/ZooKeeperClient.scala
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ class ZooKeeperClient(connectString: String,
// package level visibility for testing only
private[zookeeper] object ZooKeeperClientWatcher extends Watcher {
override def process(event: WatchedEvent): Unit = {
error(s"Received event: $event")
debug(s"Received event: $event")
Option(event.getPath) match {
case None =>
val state = event.getState
Expand Down

0 comments on commit 08c1b7e

Please sign in to comment.