kabhishek4 commented on code in PR #2280: URL: https://github.com/apache/zookeeper/pull/2280#discussion_r2227933163
########## zookeeper-server/src/main/java/org/apache/zookeeper/server/auth/IPAuthenticationProvider.java: ########## @@ -93,9 +230,11 @@ private void mask(byte[] b, int bits) { } public boolean matches(String id, String aclExpr) { + LOG.info("id: '{}' aclExpr: {}", id, aclExpr); Review Comment: Will change it to LOG.trace ########## zookeeper-server/src/main/java/org/apache/zookeeper/server/auth/IPAuthenticationProvider.java: ########## @@ -93,9 +230,11 @@ private void mask(byte[] b, int bits) { } public boolean matches(String id, String aclExpr) { + LOG.info("id: '{}' aclExpr: {}", id, aclExpr); String[] parts = aclExpr.split("/", 2); byte[] aclAddr = addr2Bytes(parts[0]); if (aclAddr == null) { + LOG.info("ACL Expr is null"); Review Comment: Agreed, removed the trace line -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@zookeeper.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org