Fix logging statement
This commit is contained in:
parent
2bce2e9456
commit
532d100c22
|
@ -46,8 +46,7 @@ public class LZFCompressor implements Compressor {
|
||||||
|
|
||||||
public LZFCompressor() {
|
public LZFCompressor() {
|
||||||
this.decoder = ChunkDecoderFactory.safeInstance();
|
this.decoder = ChunkDecoderFactory.safeInstance();
|
||||||
Loggers.getLogger(LZFCompressor.class).debug("using encoder [{}] and decoder[{}] ",
|
Loggers.getLogger(LZFCompressor.class).debug("using decoder[{}] ", this.decoder.getClass().getSimpleName());
|
||||||
this.decoder.getClass().getSimpleName());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue