From 2742f2ca72f941a8225c037da4862840a5914b42 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sat, 15 May 2004 22:53:55 +0000 Subject: [PATCH] Don't worry about tones we can't send (bug #1652) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2973 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channel.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/channel.c b/channel.c index 9349f035e1..e870cfb653 100755 --- a/channel.c +++ b/channel.c @@ -1425,8 +1425,7 @@ static int do_senddigit(struct ast_channel *chan, char digit) ast_playtones_start(chan,0,dtmf_tones[15], 0); else { /* not handled */ - ast_log(LOG_WARNING, "Unable to handle DTMF tone '%c' for '%s'\n", digit, chan->name); - return -1; + ast_log(LOG_DEBUG, "Unable to handle DTMF tone '%c' for '%s'\n", digit, chan->name); } } return 0;