From f6c4513da47945eeeea3283fa66eefd388d0e079 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 13 Dec 2013 11:27:57 +0900 Subject: emotion: use emotion log domain instead of eina one. --- src/lib/emotion/emotion_main.c | 8 ++++---- 1 file 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(); -- cgit v1.2.3