Github user lei-xia commented on a diff in the pull request:
https://github.com/apache/helix/pull/155#discussion_r176490668
--- Diff:
helix-core/src/main/java/org/apache/helix/manager/zk/CallbackHandler.java ---
@@ -576,8 +573,8 @@ public void handleDataChange(String dataPath, Object
data) {
@Override
public void handleChildChange(String parentPath, List<String>
currentChilds) {
- logger.debug("Data change callback: child changed, path: " +
parentPath + ", current childs: "
- + currentChilds);
+ logger.info("Data change callback: child changed, path: " + parentPath
+ ", current child count: "
--- End diff --
Sure, I will change it to debug, we use that information to investigate our
occusion callback lost issue, and now we know the cause, so will fix this.
---