mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-23 14:44:28 +00:00
Get rid of any remaining ast_verbose calls in the code in favor of
ast_verb (closes issue #11934) Reported by: mvanbaak Patches: 20080205_astverb-2.diff.txt uploaded by mvanbaak (license 7) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@102525 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1770,13 +1770,11 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
||||
peer->whentohangup = time(NULL) + calldurationlimit;
|
||||
}
|
||||
if (!ast_strlen_zero(dtmfcalled)) {
|
||||
if (option_verbose > 2)
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Sending DTMF '%s' to the called party.\n", dtmfcalled);
|
||||
ast_verb(3, "Sending DTMF '%s' to the called party.\n", dtmfcalled);
|
||||
res = ast_dtmf_stream(peer, chan, dtmfcalled, 250, 0);
|
||||
}
|
||||
if (!ast_strlen_zero(dtmfcalling)) {
|
||||
if (option_verbose > 2)
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Sending DTMF '%s' to the calling party.\n", dtmfcalling);
|
||||
ast_verb(3, "Sending DTMF '%s' to the calling party.\n", dtmfcalling);
|
||||
res = ast_dtmf_stream(chan, peer, dtmfcalling, 250, 0);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user