Change "Symlink loop" message from warning to verbose (#6545)

Change Symlink loop message to verbose from warning
This commit is contained in:
seph 2020-07-07 13:45:26 -04:00 committed by GitHub
parent 5b959e91ab
commit 40897bb29c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -308,7 +308,7 @@ static bool checkForLoops(std::set<int>& 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;