浏览代码

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

Lei Xu 9 年之前
父节点
当前提交
6a6e74acf5

+ 2 - 1
hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/RedundantEditLogInputStream.java

@@ -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;