HADOOP-11877. SnappyDecompressor's Logger class name is wrong ( Contributed by surendra singh lilhore)

This commit is contained in:
Vinayakumar B 2015-05-08 16:52:14 +05:30
parent 46509617b6
commit 1ffb7fa42e
2 changed files with 4 additions and 1 deletions

View File

@ -626,6 +626,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-11922. Misspelling of threshold in log4j.properties for tests
in hadoop-tools (Gabor Liptak via vinayakumarb)
HADOOP-11877. SnappyDecompressor's Logger class name is wrong
(surendra singh lilhore via vinayakumarb)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -34,7 +34,7 @@
*/
public class SnappyDecompressor implements Decompressor {
private static final Log LOG =
LogFactory.getLog(SnappyCompressor.class.getName());
LogFactory.getLog(SnappyDecompressor.class.getName());
private static final int DEFAULT_DIRECT_BUFFER_SIZE = 64 * 1024;
private int directBufferSize;