diff options
| author | Steve Block <steveblock@google.com> | 2012-01-06 19:18:46 +0000 |
|---|---|---|
| committer | Steve Block <steveblock@google.com> | 2012-01-06 19:18:46 +0000 |
| commit | 0805d75d3c4319f54fb3c854be2f7baab561cf1b (patch) | |
| tree | 803ad5b9f03f2130a7dcc51560d96bb33cdb3f8b | |
| parent | 4fa0356a74ee27878324343f2d5f17d897ba58d9 (diff) | |
| download | android_frameworks_opt_emoji-0805d75d3c4319f54fb3c854be2f7baab561cf1b.tar.gz android_frameworks_opt_emoji-0805d75d3c4319f54fb3c854be2f7baab561cf1b.tar.bz2 android_frameworks_opt_emoji-0805d75d3c4319f54fb3c854be2f7baab561cf1b.zip | |
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGEcm-10.1.3-RC2cm-10.1.3-RC1cm-10.1.3cm-10.1.2cm-10.1.1cm-10.1.0-RC5cm-10.1.0-RC4cm-10.1.0-RC3cm-10.1.0-RC2cm-10.1.0-RC1cm-10.1.0cm-10.1-M3cm-10.1-M2cm-10.1-M1mr1.1-stagingjellybean-stablejellybeancm-10.1
See https://android-git.corp.google.com/g/#/c/157220
Bug: 5449033
Change-Id: Ibcc35dacfb2e3fb45b5effe373769837d777bbe6
| -rw-r--r-- | EmojiFactory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/EmojiFactory.cpp b/EmojiFactory.cpp index 36ee052..3693314 100644 --- a/EmojiFactory.cpp +++ b/EmojiFactory.cpp @@ -79,7 +79,7 @@ void EmojiFactoryManager::TryRegisterEmojiFactory(const char *library_name) { if (error_str) { error_str = "Unknown reason"; } - LOGE("Failed to load shared library %s: %s", library_name, error_str); + ALOGE("Failed to load shared library %s: %s", library_name, error_str); return; } EmojiFactory *(*get_emoji_factory)() = @@ -90,14 +90,14 @@ void EmojiFactoryManager::TryRegisterEmojiFactory(const char *library_name) { if (error_str) { error_str = "Unknown reason"; } - LOGE("Failed to call GetEmojiFactory: %s", error_str); + ALOGE("Failed to call GetEmojiFactory: %s", error_str); dlclose(handle); return; } EmojiFactory *factory = (*get_emoji_factory)(); if (NULL == factory) { - LOGE("Returned factory is NULL"); + ALOGE("Returned factory is NULL"); dlclose(handle); return; } @@ -108,7 +108,7 @@ void EmojiFactoryManager::TryRegisterEmojiFactory(const char *library_name) { for (size_t i = 0; i < size; ++i) { EmojiFactory *f = g_factories->itemAt(i); if (!strcmp(name, f->Name())) { - LOGE("Same EmojiFactory was found: %s", name); + ALOGE("Same EmojiFactory was found: %s", name); delete factory; dlclose(handle); return; |
