You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "John Zhuge (JIRA)" <ji...@apache.org> on 2016/05/16 16:48:12 UTC

[jira] [Created] (HDFS-10410) RedundantEditLogInputStream#LOG is set to wrong class

John Zhuge created HDFS-10410:
---------------------------------

             Summary: RedundantEditLogInputStream#LOG is set to wrong class
                 Key: HDFS-10410
                 URL: https://issues.apache.org/jira/browse/HDFS-10410
             Project: Hadoop HDFS
          Issue Type: Bug
            Reporter: John Zhuge
            Assignee: John Zhuge
            Priority: Minor


Found the issue while analyzing a log message that points to the wrong class.

{code}
class RedundantEditLogInputStream extends EditLogInputStream {
  public static final Log LOG = LogFactory.getLog(EditLogInputStream.class.getName());
{code}
should be changed to:
{code}
  public static final Log LOG = LogFactory.getLog(RedundantEditLogInputStream.class.getName());
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-help@hadoop.apache.org