|
@@ -104,7 +104,7 @@ public class CodecPool {
|
|
|
Compressor compressor = borrow(compressorPool, codec.getCompressorType());
|
|
|
if (compressor == null) {
|
|
|
compressor = codec.createCompressor();
|
|
|
- LOG.info("Got brand-new compressor");
|
|
|
+ LOG.info("Got brand-new compressor ["+codec.getDefaultExtension()+"]");
|
|
|
} else {
|
|
|
compressor.reinit(conf);
|
|
|
LOG.debug("Got recycled compressor");
|
|
@@ -129,7 +129,7 @@ public class CodecPool {
|
|
|
Decompressor decompressor = borrow(decompressorPool, codec.getDecompressorType());
|
|
|
if (decompressor == null) {
|
|
|
decompressor = codec.createDecompressor();
|
|
|
- LOG.info("Got brand-new decompressor");
|
|
|
+ LOG.info("Got brand-new decompressor ["+codec.getDefaultExtension()+"]");
|
|
|
} else {
|
|
|
LOG.debug("Got recycled decompressor");
|
|
|
}
|