Use a logger in ZStream

- Contributed by @CruzBishop
This commit is contained in:
Trustin Lee 2012-05-30 15:39:40 -07:00
parent 6dee9f7b0c
commit 65c526c1c8

View File

@ -47,10 +47,15 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
package io.netty.util.internal.jzlib; package io.netty.util.internal.jzlib;
import io.netty.logging.InternalLogger;
import io.netty.logging.InternalLoggerFactory;
import io.netty.util.internal.jzlib.JZlib.WrapperType; import io.netty.util.internal.jzlib.JZlib.WrapperType;
public final class ZStream { public final class ZStream {
private static final InternalLogger logger =
InternalLoggerFactory.getInstance(ZStream.class);
public byte[] next_in; // next input byte public byte[] next_in; // next input byte
public int next_in_index; public int next_in_index;
public int avail_in; // number of bytes available at next_in public int avail_in; // number of bytes available at next_in
@ -181,10 +186,10 @@ public final class ZStream {
next_out.length <= next_out_index || next_out.length <= next_out_index ||
dstate.pending_buf.length < dstate.pending_out + len || dstate.pending_buf.length < dstate.pending_out + len ||
next_out.length < next_out_index + len) { next_out.length < next_out_index + len) {
System.out.println(dstate.pending_buf.length + ", " + logger.debug(dstate.pending_buf.length + ", " +
dstate.pending_out + ", " + next_out.length + ", " + dstate.pending_out + ", " + next_out.length + ", " +
next_out_index + ", " + len); next_out_index + ", " + len);
System.out.println("avail_out=" + avail_out); logger.debug("avail_out=" + avail_out);
} }
System.arraycopy(dstate.pending_buf, dstate.pending_out, next_out, System.arraycopy(dstate.pending_buf, dstate.pending_out, next_out,