Merge "libprocessgroup: remove failure log for aggregate profiles"

This commit is contained in:
Treehugger Robot 2021-05-14 22:06:37 +00:00 committed by Gerrit Code Review
commit 08a7cf2baa
1 changed files with 1 additions and 3 deletions

View File

@ -308,9 +308,7 @@ bool ApplyProfileAction::ExecuteForProcess(uid_t uid, pid_t pid) const {
bool ApplyProfileAction::ExecuteForTask(int tid) const {
for (const auto& profile : profiles_) {
if (!profile->ExecuteForTask(tid)) {
PLOG(WARNING) << "ExecuteForTask failed for aggregate profile";
}
profile->ExecuteForTask(tid);
}
return true;
}