HDFS-10410. RedundantEditLogInputStream.LOG is set to wrong class. (John Zhuge via lei)

This commit is contained in:
Lei Xu 2016-05-16 17:05:46 -07:00
parent 4b55642b9d
commit 6a6e74acf5
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ import com.google.common.primitives.Longs;
* different subset of the available edits.
*/
class RedundantEditLogInputStream extends EditLogInputStream {
public static final Log LOG = LogFactory.getLog(EditLogInputStream.class.getName());
public static final Log LOG = LogFactory.getLog(
RedundantEditLogInputStream.class.getName());
private int curIdx;
private long prevTxId;
private final EditLogInputStream[] streams;