mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
add debug
This commit is contained in:
parent
aea86cbf89
commit
091f6297c4
|
@ -95,12 +95,13 @@ public class SeaweedFileSystemStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
public FileStatus getFileStatus(final Path path) {
|
public FileStatus getFileStatus(final Path path) {
|
||||||
LOG.debug("doGetFileStatus path: {}", path);
|
|
||||||
|
|
||||||
FilerProto.Entry entry = lookupEntry(path);
|
FilerProto.Entry entry = lookupEntry(path);
|
||||||
if (entry == null) {
|
if (entry == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
LOG.debug("doGetFileStatus path:{} entry:{}", path, entry);
|
||||||
|
|
||||||
FileStatus fileStatus = doGetFileStatus(path, entry);
|
FileStatus fileStatus = doGetFileStatus(path, entry);
|
||||||
return fileStatus;
|
return fileStatus;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue