discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=1caf4250da26b0a5d2a769fb67e4bafc82d59a0b
commit 1caf4250da26b0a5d2a769fb67e4bafc82d59a0b Author: Mike Blumenkrantz <[email protected]> Date: Thu Jan 1 17:31:21 2015 -0500 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 --- src/bin/e_log.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_log.c b/src/bin/e_log.c index 56e5500..d2a7811 100644 --- a/src/bin/e_log.c +++ b/src/bin/e_log.c @@ -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; } --
