Fix logging statement

This commit is contained in:
Jason Tedor 2015-08-28 13:34:08 -04:00
parent 2bce2e9456
commit 532d100c22
1 changed files with 1 additions and 2 deletions

View File

@ -46,8 +46,7 @@ public class LZFCompressor implements Compressor {
public LZFCompressor() {
this.decoder = ChunkDecoderFactory.safeInstance();
Loggers.getLogger(LZFCompressor.class).debug("using encoder [{}] and decoder[{}] ",
this.decoder.getClass().getSimpleName());
Loggers.getLogger(LZFCompressor.class).debug("using decoder[{}] ", this.decoder.getClass().getSimpleName());
}
@Override