cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f6c4513da47945eeeea3283fa66eefd388d0e079

commit f6c4513da47945eeeea3283fa66eefd388d0e079
Author: Cedric BAIL <cedric.b...@samsung.com>
Date:   Fri Dec 13 11:27:57 2013 +0900

    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 23f6c7f..5f5f512 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();

-- 


Reply via email to