]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Reintroduce an optimization that was lost when converting trunk to use ast_verb.
authorMark Michelson <mmichelson@digium.com>
Fri, 14 Dec 2007 15:59:09 +0000 (15:59 +0000)
committerMark Michelson <mmichelson@digium.com>
Fri, 14 Dec 2007 15:59:09 +0000 (15:59 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@92976 65c4cc65-6c06-0410-ace0-fbb531ad65f3

funcs/func_timeout.c

index d1efd97e0f31cc0808c9cba069b93fc244e4329f..3eb4f32223a5a1e24d97f3bb4c6c7bbe088fba83 100644 (file)
@@ -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':