Wifi-HAL: enable ALOGV on userdebug builds
By default, ALOGV messages do not make it in the build. For
the Wifi HAL, however, we'd like the ability to dynamically
enable VERBOSE logging.
Update the makefile, so that ALOGV messages are compiled
into the library, on userdebug builds.
BUG=27857554
TEST=manual
Manual test:
$ lunch aosp_bullhead-userdebug && m -j64
$ strings out/target/product/bullhead/system/lib/libwifi-service.so \
| grep 'Initiialized diag sock'
-> match
$ strings out/target/product/bullhead/system/lib64/libwifi-service.so \
| grep 'Initiialized diag sock'
-> match
$ lunch aosp_bullhead-user
$ strings out/target/product/bullhead/system/lib/libwifi-service.so \
| grep 'Initiialized diag sock'
-> NO match
$ strings out/target/product/bullhead/system/lib64/libwifi-service.so \
| grep 'Initiialized diag sock'
-> NO match
Change-Id: Id592de85f6270f2392a4244cb27fe29ed23542f2
1 file changed