mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-19 11:13:09 +00:00
Do a massive conversion for using the ast_verb() macro
(closes issue #10277, patches by mvanbaak) Basically, this changes ... if (option_verbose > 2) ast_verbose(VERBOSE_PREFIX_3, "Something\n"); to ... ast_verb(3, "Something\n"); git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@77299 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -111,26 +111,21 @@ static int timeout_write(struct ast_channel *chan, const char *cmd, char *data,
|
||||
case 'a':
|
||||
case 'A':
|
||||
ast_channel_setwhentohangup(chan, x);
|
||||
if (option_verbose > 2) {
|
||||
if (chan->whentohangup) {
|
||||
struct timeval tv = { chan->whentohangup, 0 };
|
||||
ast_strftime(timestr, sizeof(timestr), "%Y-%m-%d %H:%M:%S.%3q %Z",
|
||||
ast_localtime(&tv, &myt, NULL));
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Channel will hangup at %s.\n",
|
||||
timestr);
|
||||
ast_verb(3, "Channel will hangup at %s.\n", timestr);
|
||||
} else {
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Channel hangup cancelled.\n");
|
||||
ast_verb(3, "Channel hangup cancelled.\n");
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case 'r':
|
||||
case 'R':
|
||||
if (chan->pbx) {
|
||||
chan->pbx->rtimeout = x;
|
||||
if (option_verbose > 2)
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Response timeout set to %d\n",
|
||||
chan->pbx->rtimeout);
|
||||
ast_verb(3, "Response timeout set to %d\n", chan->pbx->rtimeout);
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -138,9 +133,7 @@ static int timeout_write(struct ast_channel *chan, const char *cmd, char *data,
|
||||
case 'D':
|
||||
if (chan->pbx) {
|
||||
chan->pbx->dtimeout = x;
|
||||
if (option_verbose > 2)
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Digit timeout set to %d\n",
|
||||
chan->pbx->dtimeout);
|
||||
ast_verb(3, "Digit timeout set to %d\n", chan->pbx->dtimeout);
|
||||
}
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user