summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric BAIL <cedric.bail@samsung.com>2013-12-13 11:27:57 +0900
committerCedric BAIL <cedric.bail@samsung.com>2013-12-13 11:30:46 +0900
commitf6c4513da47945eeeea3283fa66eefd388d0e079 (patch)
tree4be8b53233f271f46016fa24cc9a55a2e1d05abc
parentd55164c5a22806bd74fabb39678ddd4ddfd3694e (diff)
emotion: use emotion log domain instead of eina one.
-rw-r--r--src/lib/emotion/emotion_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/emotion/emotion_main.c b/src/lib/emotion/emotion_main.c
index 23f6c7f05..5f5f5124e 100644
--- a/src/lib/emotion/emotion_main.c
+++ b/src/lib/emotion/emotion_main.c
@@ -146,7 +146,7 @@ emotion_init(void)
_emotion_log_domain = eina_log_domain_register("emotion", EINA_COLOR_LIGHTCYAN);
if (_emotion_log_domain < 0)
{
- EINA_LOG_CRIT("Could not register log domain 'emotion'");
+ CRITICAL("Could not register log domain 'emotion'");
eina_shutdown();
return EINA_FALSE;
}
@@ -208,7 +208,7 @@ emotion_shutdown(void)
if (_emotion_init_count <= 0)
{
- EINA_LOG_ERR("Init count not greater than 0 in emotion shutdown.");
+ ERR("Init count not greater than 0 in emotion shutdown.");
return EINA_FALSE;
}
if (--_emotion_init_count) return EINA_TRUE;
@@ -221,11 +221,11 @@ emotion_shutdown(void)
if (emotion_pending_objects > 0)
{
- EINA_LOG_ERR("There is still %i Emotion pipeline running", emotion_pending_objects);
+ ERR("There is still %i Emotion pipeline running", emotion_pending_objects);
}
if (emotion_pendig_events > 0)
{
- EINA_LOG_ERR("There is still %i Emotion events queued", emotion_pendig_events);
+ ERR("There is still %i Emotion events queued", emotion_pendig_events);
}
emotion_modules_shutdown();