Github user enixon commented on a diff in the pull request:

    https://github.com/apache/zookeeper/pull/561#discussion_r203522485
  
    --- Diff: 
src/java/main/org/apache/zookeeper/server/PrepRequestProcessor.java ---
    @@ -817,10 +817,12 @@ protected void pRequest(Request request) throws 
RequestProcessorException {
                                 type = OpCode.error;
                                 txn = new ErrorTxn(e.code().intValue());
     
    -                            LOG.info("Got user-level KeeperException when 
processing "
    -                                    + request.toString() + " aborting 
remaining multi ops."
    -                                    + " Error Path:" + e.getPath()
    -                                    + " Error:" + e.getMessage());
    +                            if (e.code().intValue() > 
Code.APIERROR.intValue()) {
    --- End diff --
    
    Exactly.
    
    I'll fix up the format of this log line and the others as well.


---

Reply via email to