diff options
author | Steve Block <steveblock@google.com> | 2012-01-09 10:11:49 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-01-09 10:11:49 -0800 |
commit | 5568a9850c798bc4d30002485666c70c055e3457 (patch) | |
tree | ffafe7b59453d228a569a8b69f996dddc455a189 /Source/WebKit/android/jni/WebIconDatabase.cpp | |
parent | eeda08b1ca4b27f46c54656a420ab69b8eec870c (diff) | |
parent | f6b86ce97ca983128ec58f77cb4932774845f072 (diff) | |
download | external_webkit-5568a9850c798bc4d30002485666c70c055e3457.zip external_webkit-5568a9850c798bc4d30002485666c70c055e3457.tar.gz external_webkit-5568a9850c798bc4d30002485666c70c055e3457.tar.bz2 |
Merge "Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE"
Diffstat (limited to 'Source/WebKit/android/jni/WebIconDatabase.cpp')
-rw-r--r-- | Source/WebKit/android/jni/WebIconDatabase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebKit/android/jni/WebIconDatabase.cpp b/Source/WebKit/android/jni/WebIconDatabase.cpp index e46b600..4a2ea0a 100644 --- a/Source/WebKit/android/jni/WebIconDatabase.cpp +++ b/Source/WebKit/android/jni/WebIconDatabase.cpp @@ -188,9 +188,9 @@ static void Open(JNIEnv* env, jobject obj, jstring path) ALOGV("Opening WebIconDatabase file '%s'", pathStr.latin1().data()); bool res = iconDb.open(pathStr, WebCore::IconDatabase::defaultDatabaseFilename()); if (!res) - LOGE("Open failed!"); + ALOGE("Open failed!"); } else - LOGE("Failed to set permissions on '%s'", fullPath.data()); + ALOGE("Failed to set permissions on '%s'", fullPath.data()); } static void Close(JNIEnv* env, jobject obj) |