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
devs/discomfitor/action_route
Mike Blumenkrantz 6 years ago
parent 46fc9c0988
commit aad74ea341
  1. 3
      src/bin/e_log.c

@ -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;
}

Loading…
Cancel
Save