Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea8bfaa3 authored by Eric Biggers's avatar Eric Biggers Committed by Automerger Merge Worker
Browse files

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

Merge "Fix logspam due to missing /vendor/etc/public.libraries.txt" into main am: 997af74d am: b8cdb954

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2650395



Change-Id: I2f91c1a25325c69fc6ed9f091b7b254da8501ee8
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents a8c202a2 b8cdb954
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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);
        }