do not enable abort on critical in development builds for raster only

let's dispense with the new environment variables and workarounds and
avoid future conflicts with this efl-style problem solving
This commit is contained in:
Mike Blumenkrantz 2017-06-23 18:21:41 -04:00
parent 46fc9c0988
commit aad74ea341
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,8 @@ e_log_init(void)
eina_log_print_cb_set(_e_log_cb, NULL);
}
#ifndef E_RELEASE_BUILD
eina_log_abort_on_critical_set(1);
if (!eina_streq(getenv("USER"), "raster"))
eina_log_abort_on_critical_set(1);
#endif
return e_log_dom != -1;
}