Merge "libprocessgroup: remove failure log for aggregate profiles" into sc-dev

This commit is contained in:
Wei Wang 2021-05-18 05:43:15 +00:00 committed by Android (Google) Code Review
commit 1d14bd3c1a
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;
}