Fix logging statement
This commit is contained in:
parent
2bce2e9456
commit
532d100c22
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue