raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6a3a4a4124f3b63ab5d60a9faebf92cacb67a841
commit 6a3a4a4124f3b63ab5d60a9faebf92cacb67a841 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Nov 16 09:34:41 2016 +0900 eina log - explain how to humanify the output for bts when printed --- src/lib/eina/eina_log.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/eina/eina_log.c b/src/lib/eina/eina_log.c index f56fe81..098abc1 100644 --- a/src/lib/eina/eina_log.c +++ b/src/lib/eina/eina_log.c @@ -1365,7 +1365,11 @@ eina_log_domain_unregister_unlocked(int domain) #ifdef EINA_LOG_BACKTRACE # define DISPLAY_BACKTRACE(File, Level) \ if (EINA_UNLIKELY(Level <= _backtrace_level)) { \ - fprintf(File, "*** Backtrace ***\n"); \ + fprintf(File, \ + "## Backtrace --- Run eina_btlog then paste this, then hit CTRL+D\n" \ + "## Use eina_btlog -n to remove color. Btlog makes it human-readable.\n" \ + "## Please provide the human readable log along with any bug reports.\n" \ + ); \ EINA_BT(File); \ } #else --
