diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-12-04 00:28:10 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-12-04 00:28:10 -0800 |
| commit | 091f6297c4b309d7f6fa3196ebc613f8d74d6e46 (patch) | |
| tree | de0fb6d3dfafda5307c88f8b489944f00677520f /other/java | |
| parent | aea86cbf8941b81400798305b622556e6b6a50cf (diff) | |
| download | seaweedfs-091f6297c4b309d7f6fa3196ebc613f8d74d6e46.tar.xz seaweedfs-091f6297c4b309d7f6fa3196ebc613f8d74d6e46.zip | |
add debug
Diffstat (limited to 'other/java')
| -rw-r--r-- | other/java/hdfs/src/main/java/seaweed/hdfs/SeaweedFileSystemStore.java | 3 |
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; } |
