set elm log level to CRI

current elm usage triggers infinite (harmless) widget-parenting errors. to avoid filling hard disks with log files, shut this up for now
This commit is contained in:
Mike Blumenkrantz 2015-01-01 17:31:21 -05:00
parent 4e947b00bc
commit 1caf4250da
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ e_log_init(void)
{
e_log_dom = eina_log_domain_register("e", EINA_COLOR_WHITE);
eina_log_print_cb_set(_e_log_cb, NULL);
eina_log_domain_level_set("elementary", EINA_LOG_LEVEL_CRITICAL);
return e_log_dom != -1;
}