aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_iax2.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-01 18:31:28 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-01 18:31:28 +0000
commitc9594dbbe18490492dd6c228648e7bc45d2310bd (patch)
treee6e26d51961659dfc8e806587331a2c55cf32247 /channels/chan_iax2.c
parent8c6c188200c2452b4a9274d9017a2bb3cbbbfda4 (diff)
Merged revisions 191494 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r191494 | tilghman | 2009-05-01 13:18:00 -0500 (Fri, 01 May 2009) | 4 lines Set debug message back to DEBUG level. (closes issue #15007) Reported by: hulber ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@191553 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_iax2.c')
-rw-r--r--channels/chan_iax2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index f21770419..9044d92fd 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -1220,8 +1220,8 @@ static void __send_ping(const void *data)
/* I am the schedule, so I'm allowed to do this */
iaxs[callno]->pingid = -1;
}
- } else if (option_debug > 0) {
- ast_log(LOG_DEBUG, "I was supposed to send a PING with callno %d, but no such call exists (and I cannot remove pingid, either).\n", callno);
+ } else {
+ ast_debug(1, "I was supposed to send a PING with callno %d, but no such call exists.\n", callno);
}
ast_mutex_unlock(&iaxsl[callno]);
@@ -1266,7 +1266,7 @@ static void __send_lagrq(const void *data)
iaxs[callno]->lagid = -1;
}
} else {
- ast_log(LOG_WARNING, "I was supposed to send a LAGRQ with callno %d, but no such call exists (and I cannot remove lagid, either).\n", callno);
+ ast_debug(1, "I was supposed to send a LAGRQ with callno %d, but no such call exists.\n", callno);
}
ast_mutex_unlock(&iaxsl[callno]);