From: Luigi Rizzo Date: Wed, 25 Jul 2007 14:13:17 +0000 (+0000) Subject: change the debug level to 3 for an exceedingly annoying message X-Git-Tag: 1.6.0-beta1~3^2~1924 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1a5701821df98bf0848373bf7f6a1f7e2ad4256;p=thirdparty%2Fasterisk.git change the debug level to 3 for an exceedingly annoying message (3-deep nested loop) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@77054 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/translate.c b/main/translate.c index 463b0e52fa..49ac519be9 100644 --- a/main/translate.c +++ b/main/translate.c @@ -477,7 +477,7 @@ static void rebuild_matrix(int samples) tr_matrix[x][z].step = tr_matrix[x][y].step; tr_matrix[x][z].cost = newcost; tr_matrix[x][z].multistep = 1; - ast_debug(1, "Discovered %d cost path from %s to %s, via %d\n", tr_matrix[x][z].cost, ast_getformatname(x), ast_getformatname(z), y); + ast_debug(3, "Discovered %d cost path from %s to %s, via %d\n", tr_matrix[x][z].cost, ast_getformatname(x), ast_getformatname(z), y); changed++; } }