Merge "libvndksupport: log sphal namespace fallback" into main

This commit is contained in:
Steven Moreland 2023-10-18 21:50:09 +00:00 committed by Gerrit Code Review
commit 06e49c8c65
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ void* android_load_sphal_library(const char* name, int flag) {
}
return handle;
} else {
ALOGD("Loading %s from current namespace instead of sphal namespace.", name);
ALOGW("Loading %s from current namespace instead of sphal namespace.", name);
return dlopen(name, flag);
}
}