From: Olle Johansson Date: Sun, 15 Feb 2009 20:18:27 +0000 (+0000) Subject: Merged revisions 175777 via svnmerge from X-Git-Tag: 1.6.2.0-beta1~226 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9a8142e58143e15e731dd42e60274e4dbdda575;p=thirdparty%2Fasterisk.git Merged revisions 175777 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r175777 | oej | 2009-02-15 20:48:38 +0100 (Sön, 15 Feb 2009) | 2 lines Make sure that the debug line is not printed on debug level 0 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@175783 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index a81b56289e..686496bee6 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -16057,7 +16057,7 @@ static int build_reply_digest(struct sip_pvt *p, int method, char* digest, int d auth = find_realm_authentication(authl, p->realm); /* If not, global list */ if (auth) { - ast_log(LOG_DEBUG, "use realm [%s] from peer [%s][%s]\n", auth->username, p->peername, p->username); + ast_debug(3, "use realm [%s] from peer [%s][%s]\n", auth->username, p->peername, p->username); username = auth->username; secret = auth->secret; md5secret = auth->md5secret;