HDFS-5979. Typo and logger fix for fsimage PB code. (wang)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1570070 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew Wang 2014-02-20 03:25:08 +00:00
parent e2c0af8e7b
commit 077adb25b7
3 changed files with 4 additions and 2 deletions

View File

@ -535,6 +535,8 @@ Release 2.4.0 - UNRELEASED
HDFS-5742. DatanodeCluster (mini cluster of DNs) fails to start. HDFS-5742. DatanodeCluster (mini cluster of DNs) fails to start.
(Arpit Agarwal) (Arpit Agarwal)
HDFS-5979. Typo and logger fix for fsimage PB code. (wang)
BREAKDOWN OF HDFS-5698 SUBTASKS AND RELATED JIRAS BREAKDOWN OF HDFS-5698 SUBTASKS AND RELATED JIRAS
HDFS-5717. Save FSImage header in protobuf. (Haohui Mai via jing9) HDFS-5717. Save FSImage header in protobuf. (Haohui Mai via jing9)

View File

@ -75,7 +75,7 @@ public final class FSImageFormatPBINode {
private static final AclEntryType[] ACL_ENTRY_TYPE_VALUES = AclEntryType private static final AclEntryType[] ACL_ENTRY_TYPE_VALUES = AclEntryType
.values(); .values();
private static final Log LOG = LogFactory.getLog(FSImageFormatProtobuf.class); private static final Log LOG = LogFactory.getLog(FSImageFormatPBINode.class);
public final static class Loader { public final static class Loader {
public static PermissionStatus loadPermission(long id, public static PermissionStatus loadPermission(long id,

View File

@ -268,7 +268,7 @@ public final class FSImageFormatProtobuf {
} }
break; break;
default: default:
LOG.warn("Unregconized section " + n); LOG.warn("Unrecognized section " + n);
break; break;
} }
} }