jam2in / arcus-java-client

Arcus Java client
Apache License 2.0
0 stars 0 forks source link

matchStatus 내에서 불필요한 log 출력 제거 #21

Closed whchoi83 closed 8 years ago

whchoi83 commented 8 years ago

OperationImpl.matchStatus 내에 아래와 같은 코드가 있다.

        if(rv == null) {
            rv=new OperationStatus(false, line);
            /* ENABLE_REPLICATION if */
            getLogger().error("Unexpected operation status : %s", line);
            /* ENABLE_REPLICATION end */
        }

위 코드는 replication 개발 당시 debug 를 위해 추가했던 내용이다. 실제 배포 시에 제거되었어야 하는 코드인데, 그대로 배포되었다.

삭제하도록 한다.

whchoi83 commented 8 years ago

추후에는 (가능하면) 사소한 수정 사항도 이슈를 만들어서 처리하도록 하겠습니다.

whchoi83 commented 8 years ago

본 이슈는 merge 되어 close 합니다.