summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--EmojiFactory.cpp8
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;