Merge "Fix logspam due to missing /vendor/etc/public.libraries.txt" into main

This commit is contained in:
Eric Biggers
2023-07-11 21:47:39 +00:00
committed by Gerrit Code Review

View File

@@ -1848,6 +1848,9 @@ public class SystemConfig {
soname, soname, new String[0], true);
mSharedLibraries.put(entry.name, entry);
}
} catch (FileNotFoundException e) {
// Expected for /vendor/etc/public.libraries.txt on some devices
Slog.d(TAG, listFile + " does not exist");
} catch (IOException e) {
Slog.w(TAG, "Failed to read public libraries file " + listFile, e);
}