emotion: use emotion log domain instead of eina one.

This commit is contained in:
Cedric BAIL 2013-12-13 11:27:57 +09:00
parent d55164c5a2
commit f6c4513da4
1 changed files with 4 additions and 4 deletions

View File

@ -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();