Skip to content

Commit

Permalink
CURATOR-526: drop log level for message to debug
Browse files Browse the repository at this point in the history
ZooKeeper is backwards compatible and accepts older config
string formats, albeit without dynamic configuration
support. Since the older format is acceptable, we should not
log at error when we see the older format and should
instead simply log at debug.

Author: Ammar Khaku <ammar.khaku@gmail.com>

Reviewers: Enrico Olivelli <eolivelli@apache.org>, Russell Bolles

Closes #382 from akhaku/dropLogLevel
  • Loading branch information
akhaku authored and eolivelli committed Mar 28, 2021
1 parent 4a11aae commit 7a09c11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private void processConfigData(byte[] data) throws Exception
}
else
{
log.error("Invalid config event received: {}", properties);
log.debug("Invalid config event received: {}", properties);
}
}
else
Expand Down

0 comments on commit 7a09c11

Please sign in to comment.