aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-12 19:36:29 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-12 19:36:29 +0000
commit3ed7453f0f60a2aa34b68905ad3b946a86013311 (patch)
tree3e86606b5f97aead1773508afdd8101a4de65ee0 /channels
parentf39d95b6dfa9cd8cee2b91e1c1ecb69e3b921a9b (diff)
Change the full frame dropping log message to debug to avoid future bug reports.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@69014 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_iax2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index c76bd6d10..c94a6dac6 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -6319,7 +6319,8 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
if (cur) {
/* we found another thread processing a full frame for this call,
so we can't accept this frame */
- ast_log(LOG_WARNING, "Dropping frame from %s (callno %d) of type %d (subclass %d) due to frame of type %d (subclass %d) already in process\n",
+ if (option_debug)
+ ast_log(LOG_DEBUG, "Dropping frame from %s (callno %d) of type %d (subclass %d) due to frame of type %d (subclass %d) already in process\n",
ast_inet_ntoa(thread->iosin.sin_addr), cur->ffinfo.callno,
fh->type, uncompress_subclass(fh->csub),
cur->ffinfo.type, uncompress_subclass(cur->ffinfo.csub));