From 05c18876b3e2dba5dd7caea2517aaf24d92ab614 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Sat, 15 Aug 2015 12:53:00 +0200 Subject: [PATCH] eina: change default log level at which we display backtrace. We mostly use in our code base ERR in conjunction with system related error. This doesn't require any information from who did call that function to get debugged and is creating way to much noise with little value. --- src/lib/eina/eina_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/eina_log.c b/src/lib/eina/eina_log.c index 6fc9626..a9eb9aa 100644 --- a/src/lib/eina/eina_log.c +++ b/src/lib/eina/eina_log.c @@ -121,7 +121,7 @@ static Eina_Bool _disable_timing = EINA_TRUE; static int _abort_level_on_critical = EINA_LOG_LEVEL_CRITICAL; #ifdef EINA_LOG_BACKTRACE -static int _backtrace_level = 2; // CRI & ERR by default +static int _backtrace_level = 1; // CRI & ERR by default #endif static Eina_Bool _threads_enabled = EINA_FALSE; -- 2.7.4