Wiki page docs-efl-debug changed with summary [] by Raster

This commit is contained in:
Carsten Haitzler 2015-06-18 23:11:30 -07:00 committed by apache
parent 85b8807590
commit e2e5229f23
1 changed files with 8 additions and 0 deletions

View File

@ -104,6 +104,14 @@ EINA_LOG_LEVEL=3 EINA_LOG_LEVELS_GLOB=eina_*:0 ./myapp
This will disable eina_log output from all internal eina code thus allowing you to see your own domain messages easier.
You may also want to enforce crashes when such issues/errors happen, so you can set more environment variables to do this. ''EINA_ERROR_ABORT'' will do this:
<code bash>
EINA_ERROR_ABORT=1 gdb myapp
</code>
Will now cause a crash (abort) at these points above and allow you to poke around with GDB and see why this is happening. See below for more information on GDB.
----
==== Debug tools ====