--- logger.c.orig 2005-12-29 19:29:18 +0300 +++ logger.c 2005-12-29 19:30:24 +0300 @@ -831,17 +831,17 @@ count = backtrace(addresses, 20); strings = backtrace_symbols(addresses, count); if (strings) { - ast_log(LOG_WARNING, "Got %d backtrace record%c\n", count, count != 1 ? 's' : ' '); + ast_log(LOG_DEBUG, "Got %d backtrace record%c\n", count, count != 1 ? 's' : ' '); for (i=0; i < count ; i++) { - ast_log(LOG_WARNING, "#%d: [%08X] %s\n", i, (unsigned int)addresses[i], strings[i]); + ast_log(LOG_DEBUG, "#%d: [%08X] %s\n", i, (unsigned int)addresses[i], strings[i]); } free(strings); } else { - ast_log(LOG_WARNING, "Could not allocate memory for backtrace\n"); + ast_log(LOG_DEBUG, "Could not allocate memory for backtrace\n"); } free(addresses); } else { - ast_log(LOG_WARNING, "Could not allocate memory for backtrace\n"); + ast_log(LOG_DEBUG, "Could not allocate memory for backtrace\n"); } #else #ifdef Linux