summaryrefslogtreecommitdiff
path: root/channels/chan_iax2.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-05-01 18:18:00 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-05-01 18:18:00 +0000
commit451c59aa18979bba5e7cd6bd650a4152262a1225 (patch)
treeb10ef1ae2b09cf2fb49441127a65140fdbf84bfd /channels/chan_iax2.c
parent7224c99375931c908e18bd255837fdbe34a59c67 (diff)
Set debug message back to DEBUG level.
(closes issue #15007) Reported by: hulber git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@191494 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 a55f75aae..8583dbc93 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -1306,8 +1306,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]);
@@ -1368,7 +1368,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]);