drop the log level for some debug messages

Summary:
Reduce the log level for a few messages to help reduce some less important
clutter when running with an elevated debug log level.

Reviewed By: chadaustin

Differential Revision: D19188773

fbshipit-source-id: 396bb15e119fc12765ecbc707e7a1dadbdd02422
This commit is contained in:
Adam Simpkins 2019-12-19 18:46:01 -08:00 committed by Facebook Github Bot
parent 3d3c2a9f32
commit 80b8e1bfd2
4 changed files with 4 additions and 4 deletions

View File

@ -661,7 +661,7 @@ void FuseChannel::sendInvalidateInode(
throwSystemErrorExplicit(
exc.code().value(), "error invalidating FUSE inode ", ino);
} else {
XLOG(DBG3) << "sendInvalidateInode(ino=" << ino << ", off=" << off
XLOG(DBG6) << "sendInvalidateInode(ino=" << ino << ", off=" << off
<< ", len=" << len << ") failed with ENOENT";
}
}

View File

@ -329,7 +329,7 @@ ParentInodeInfo InodeBase::getParentInfo() const {
}
if (loc->parent == parent) {
// Our parent is still the same. We're done.
XLOG(DBG6) << "getParentInfo() acquired parent lock after " << numTries
XLOG(DBG9) << "getParentInfo() acquired parent lock after " << numTries
<< " tries";
return ParentInodeInfo{
loc->name, loc->parent, loc->unlinked, std::move(parentContents)};

View File

@ -650,7 +650,7 @@ bool InodeMap::isInodeRemembered(InodeNumber ino) const {
void InodeMap::onInodeUnreferenced(
InodeBase* inode,
ParentInodeInfo&& parentInfo) {
XLOG(DBG5) << "inode " << inode->getNodeId()
XLOG(DBG8) << "inode " << inode->getNodeId()
<< " unreferenced: " << inode->getLogPath();
// Acquire our lock.
auto data = data_.wlock();

View File

@ -443,7 +443,7 @@ void Overlay::handleGCRequest(GCRequest& request) {
try {
auto dirData = fsOverlay_.loadOverlayDir(ino);
if (!dirData.has_value()) {
XLOG(DBG3) << "no dir data for inode " << ino;
XLOG(DBG7) << "no dir data for inode " << ino;
continue;
} else {
dir = std::move(*dirData);