Rename LOGV(_IF) to ALOGV(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/143865
Bug: 5449033
Change-Id: I6a220f3126c2f6d0f3a749939fae4a67f8dbb1c6
diff --git a/lib/ExecutionEngine/FileHandle.cpp b/lib/ExecutionEngine/FileHandle.cpp
index 1055ea7..7238025 100644
--- a/lib/ExecutionEngine/FileHandle.cpp
+++ b/lib/ExecutionEngine/FileHandle.cpp
@@ -94,7 +94,7 @@
}
// Good, we have open and lock the file correctly.
- LOGV("File opened. fd=%d\n", mFD);
+ ALOGV("File opened. fd=%d\n", mFD);
return mFD;
}
@@ -107,7 +107,7 @@
if (mFD >= 0) {
flock(mFD, LOCK_UN);
::close(mFD);
- LOGV("File closed. fd=%d\n", mFD);
+ ALOGV("File closed. fd=%d\n", mFD);
mFD = -1;
}
}