aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-12-04 00:28:10 -0800
committerChris Lu <chris.lu@gmail.com>2018-12-04 00:28:10 -0800
commit091f6297c4b309d7f6fa3196ebc613f8d74d6e46 (patch)
treede0fb6d3dfafda5307c88f8b489944f00677520f
parentaea86cbf8941b81400798305b622556e6b6a50cf (diff)
downloadseaweedfs-091f6297c4b309d7f6fa3196ebc613f8d74d6e46.tar.xz
seaweedfs-091f6297c4b309d7f6fa3196ebc613f8d74d6e46.zip
add debug
-rw-r--r--other/java/hdfs/src/main/java/seaweed/hdfs/SeaweedFileSystemStore.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/other/java/hdfs/src/main/java/seaweed/hdfs/SeaweedFileSystemStore.java b/other/java/hdfs/src/main/java/seaweed/hdfs/SeaweedFileSystemStore.java
index a399fba13..41e2e9fca 100644
--- a/other/java/hdfs/src/main/java/seaweed/hdfs/SeaweedFileSystemStore.java
+++ b/other/java/hdfs/src/main/java/seaweed/hdfs/SeaweedFileSystemStore.java
@@ -95,12 +95,13 @@ public class SeaweedFileSystemStore {
}
public FileStatus getFileStatus(final Path path) {
- LOG.debug("doGetFileStatus path: {}", path);
FilerProto.Entry entry = lookupEntry(path);
if (entry == null) {
return null;
}
+ LOG.debug("doGetFileStatus path:{} entry:{}", path, entry);
+
FileStatus fileStatus = doGetFileStatus(path, entry);
return fileStatus;
}