Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220
Bug: 5449033
Change-Id: Ic34de235eb1cd094af555d7299da643a626ca092
diff --git a/lib/ExecutionEngine/Sha1Helper.cpp b/lib/ExecutionEngine/Sha1Helper.cpp
index 1ef717a..0acd6b8 100644
--- a/lib/ExecutionEngine/Sha1Helper.cpp
+++ b/lib/ExecutionEngine/Sha1Helper.cpp
@@ -53,7 +53,7 @@
FileHandle file;
if (file.open(filename, OpenMode::Read) < 0) {
- LOGE("Unable to calculate the sha1 checksum of %s\n", filename);
+ ALOGE("Unable to calculate the sha1 checksum of %s\n", filename);
memset(result, '\0', 20);
return;
}
@@ -85,7 +85,7 @@
void readSHA1(unsigned char *result, int result_size, char const *filename) {
FileHandle file;
if (file.open(filename, OpenMode::Read) < 0) {
- LOGE("Unable to read binary sha1 file %s\n", filename);
+ ALOGE("Unable to read binary sha1 file %s\n", filename);
memset(result, '\0', result_size);
return;
}