From: barbieri Date: Thu, 7 Oct 2010 23:51:20 +0000 (+0000) Subject: log domains in lower case. X-Git-Tag: 1.0_branch~238 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9be77f3383bf519d99c54e1b43dc60b5a8450da7;p=profile%2Fivi%2Feet.git log domains in lower case. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@53176 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/bin/eet_main.c b/src/bin/eet_main.c index 0302924..567fb10 100644 --- a/src/bin/eet_main.c +++ b/src/bin/eet_main.c @@ -333,7 +333,7 @@ main(int argc, char ** argv) if (!eet_init()) return -1; - _eet_main_log_dom = eina_log_domain_register("Eet_Main",EINA_COLOR_CYAN); + _eet_main_log_dom = eina_log_domain_register("eet_main", EINA_COLOR_CYAN); if(_eet_main_log_dom < -1) { EINA_LOG_ERR("Impossible to create a log domain for eet_main.\n"); diff --git a/src/lib/eet_lib.c b/src/lib/eet_lib.c index 4a8f147..d4b0ec1 100644 --- a/src/lib/eet_lib.c +++ b/src/lib/eet_lib.c @@ -715,7 +715,7 @@ eet_init(void) return --eet_init_count; } - _eet_log_dom_global = eina_log_domain_register("Eet", EET_DEFAULT_LOG_COLOR); + _eet_log_dom_global = eina_log_domain_register("eet", EET_DEFAULT_LOG_COLOR); if (_eet_log_dom_global < 0) { EINA_LOG_ERR("Eet Can not create a general log domain.");