mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-19 07:37:56 +08:00
add debug
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user