reduce error to warning - happens for valid progs-section-less programs am: 21f34cb32c am: c2fe18428e am: c44910988a am: b07faf770e

Original change: https://android-review.googlesource.com/c/platform/system/bpf/+/1387317

Change-Id: I5bb1798a427cff5808694b1bff59bd6f305f46d3
This commit is contained in:
Maciej Żenczykowski 2020-08-05 05:42:48 +00:00 committed by Automerger Merge Worker
commit 8e2769dfb2

View file

@ -313,7 +313,7 @@ static int getSectionSymNames(ifstream& elfFile, const string& sectionName, vect
/* No section found with matching name*/
if (sec_idx == -1) {
ALOGE("No %s section could be found in elf object\n", sectionName.c_str());
ALOGW("No %s section could be found in elf object\n", sectionName.c_str());
return -1;
}