Use a logger in ZStream

This commit is contained in:
Cruz Bishop 2012-04-15 17:34:51 +10:00
parent db97e4eb35
commit efabc3c285

View File

@ -47,9 +47,14 @@ 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;
@ -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.info(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.info("avail_out=" + avail_out);
} }
System.arraycopy(dstate.pending_buf, dstate.pending_out, next_out, System.arraycopy(dstate.pending_buf, dstate.pending_out, next_out,