aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-14 15:59:09 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-14 15:59:09 +0000
commit06927ebe4352d8318b10bd275df25176bafab7e6 (patch)
tree0d8cabf146a653705eae7d05eaa402be1d987332 /funcs
parentf63b3a6c9df23c3e7c17649675a774a7c68a0b7a (diff)
Reintroduce an optimization that was lost when converting trunk to use ast_verb.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@92976 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_timeout.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/funcs/func_timeout.c b/funcs/func_timeout.c
index d1efd97e0..3eb4f3222 100644
--- a/funcs/func_timeout.c
+++ b/funcs/func_timeout.c
@@ -106,14 +106,16 @@ 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_verb(3, "Channel will hangup at %s.\n", timestr);
+ ast_verbose("Channel will hangup at %s.\n", timestr);
} else {
- ast_verb(3, "Channel hangup cancelled.\n");
+ ast_verbose("Channel hangup cancelled.\n");
}
+ }
break;
case 'r':