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

Commit a34bd056 authored by Justin Yun's avatar Justin Yun Committed by Yifan Hong
Browse files

libvndksupport: Change log level and message.

If no 'sphal' namespace exist, the sphal library may be found in
current namespace.
Change the log level and message to note this.

Bug: 64162324
Test: Check log message for vndksupport tag.
Change-Id: I5ed6ba1e48f99e7d11d80a465177ac9f3a7fbd97
Merged-In: I5ed6ba1e48f99e7d11d80a465177ac9f3a7fbd97
parent 0d323c12
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -37,9 +37,8 @@ void* android_load_sphal_library(const char* name, int flag) {
        }
        return handle;
    } else {
        ALOGI(
            "sphal namespace is not configured for this process. "
            "Loading %s from the current namespace instead.",
        ALOGD(
            "Loading %s from current namespace instead of sphal namespace.",
            name);
        return dlopen(name, flag);
    }