Skip to content

Commit

Permalink
libvndksupport: log sphal namespace fallback
Browse files Browse the repository at this point in the history
If someone is trying to use the sphal namespace, but it
isn't available, we should probably fix this code or add an
sphal namespace there or similar. Add log for more clarity.

Bug: N/A
Test: boot cuttlefish, this doesn't get logged
Change-Id: I2fd2cddc90f529218c99ede8daf2891d84ceb94c
  • Loading branch information
smore-lore committed Oct 3, 2023
1 parent b0bff22 commit 5248c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libvndksupport/linker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 5248c5d

Please sign in to comment.