Skip to content

Commit

Permalink
revert to proper logging
Browse files Browse the repository at this point in the history
  • Loading branch information
must21de committed Jul 30, 2015
1 parent 49d4252 commit 667d1c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2197,7 +2197,7 @@ public WOResponse dispatchRequestImmediately(WORequest request) {
response.setHeader(String.valueOf(compressedData.length()), "content-length");
response.setHeader("gzip", "content-encoding");
if (log.isDebugEnabled()) {
System.out.println("before: " + inputBytesLength + ", after " + compressedData.length() + ", time: " + (System.currentTimeMillis() - start));
log.debug("before: " + inputBytesLength + ", after " + compressedData.length() + ", time: " + (System.currentTimeMillis() - start));
}
}
}
Expand Down

0 comments on commit 667d1c3

Please sign in to comment.