add debug

This commit is contained in:
Chris Lu 2018-12-04 00:28:10 -08:00
parent aea86cbf89
commit 091f6297c4

View file

@ -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;
}