Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF)  DO NOT MERGE

See https://android-git.corp.google.com/g/#/c/143865

Bug: 5449033
Change-Id: I8bd96961e369a08e86ff78b82d90f20f42787eb1
diff --git a/JNIHelp.cpp b/JNIHelp.cpp
index e1ad6fc..a9a1167 100644
--- a/JNIHelp.cpp
+++ b/JNIHelp.cpp
@@ -68,7 +68,7 @@
 {
     JNIEnv* e = reinterpret_cast<JNIEnv*>(env);
 
-    LOGV("Registering %s natives", className);
+    ALOGV("Registering %s natives", className);
 
     scoped_local_ref<jclass> c(env, findClass(env, className));
     if (c.get() == NULL) {