From 7f22db82120e7ac17165ab7614e417baa2742623 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Fri, 6 Jan 2012 19:10:09 +0000 Subject: 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: Iadef2c4279df85b4c49199c928dd29eb578a13b0 --- FaceDetector_jni.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FaceDetector_jni.cpp b/FaceDetector_jni.cpp index 03bd908..fd1e7ee 100644 --- a/FaceDetector_jni.cpp +++ b/FaceDetector_jni.cpp @@ -244,7 +244,7 @@ detect(JNIEnv *_env, jobject _this, if (btk_FaceFinder_putDCR(hfd, hdcr) == btk_STATUS_OK) { numberOfFaces = btk_FaceFinder_faces(hfd); } else { - LOGE("ERROR: Return 0 faces because error exists in btk_FaceFinder_putDCR.\n"); + ALOGE("ERROR: Return 0 faces because error exists in btk_FaceFinder_putDCR.\n"); } // release the arrays we're using @@ -300,13 +300,13 @@ jint JNI_OnLoad(JavaVM* vm, void* reserved) jint result = -1; if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) { - LOGE("ERROR: GetEnv failed\n"); + ALOGE("ERROR: GetEnv failed\n"); goto bail; } assert(env != NULL); if (register_android_media_FaceDetector(env) < 0) { - LOGE("ERROR: MediaPlayer native registration failed\n"); + ALOGE("ERROR: MediaPlayer native registration failed\n"); goto bail; } -- cgit v1.2.3