Skip to content

Commit

Permalink
disable spammy logging
Browse files Browse the repository at this point in the history
Summary: This message is printed on every service startup, which makes it one of the top logs in our logview (over 1M per day). It doesn't seem to indicate any actual problem.

Reviewed By: zhangqunshu, vit-ka

Differential Revision: D54869983

fbshipit-source-id: 7b4bcf13a6a5c2e48dfa03a19e5d6dc6e7a3b8f6
  • Loading branch information
Max Katsev authored and facebook-github-bot committed Mar 18, 2024
1 parent 2a64ac3 commit 76af6d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mcrouter/ConfigApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ bool ensureConfigDirectoryExists(boost::filesystem::path directory) {
LOG(WARNING) << "Failed to create directory '" << directory
<< "': " << result.error().what();
} else {
LOG_FIRST_N(WARNING, 10) << "Parent directory '" << directory.parent_path()
<< "' does not exist.";
VLOG(1) << "Parent directory '" << directory.parent_path()
<< "' does not exist.";
}
return false;
}
Expand Down

0 comments on commit 76af6d2

Please sign in to comment.