diff --git a/osquery/filesystem/filesystem.cpp b/osquery/filesystem/filesystem.cpp index f094b294..19e63be4 100644 --- a/osquery/filesystem/filesystem.cpp +++ b/osquery/filesystem/filesystem.cpp @@ -308,7 +308,7 @@ static bool checkForLoops(std::set& dsym_inos, std::string path) { if (dsym_inos.find(d_stat.st_ino) == dsym_inos.end()) { dsym_inos.insert(d_stat.st_ino); } else { - LOG(WARNING) << "Symlink loop detected possibly involving: " << path; + VLOG(1) << "Symlink loop detected. Ignoring: " << path; return true; } return false;