소스 검색

lower log level

tags/2.0.1
Jonathan Cobb 4 년 전
부모
커밋
51c5ee1a5e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/main/java/org/cobbzilla/util/io/multi/MultiStream.java

+ 1
- 1
src/main/java/org/cobbzilla/util/io/multi/MultiStream.java 파일 보기

@@ -79,7 +79,7 @@ public class MultiStream extends InputStream {
@Override public int read(byte[] buf, int off, int len) throws IOException {
if (log.isTraceEnabled()) log.trace("read(byte[]): trying to read "+len+" bytes. this="+this);
final int count = currentStream.read(buf, off, len);
log.error("read: got "+count+" bytes");
if (log.isTraceEnabled()) log.trace("read(byte[]): trying to read "+count+" bytes");
if (count == -1) {
if (streamIndex == streams.size()-1) {
if (log.isTraceEnabled()) log.trace("read(byte[]): end of all streams? this="+this);


불러오는 중...
취소
저장