From f8483a0d04f73e9d4c4f665efd5397cf96b17510 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 26 Jul 2007 15:49:18 +0000 Subject: 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 --- apps/app_waitforsilence.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'apps/app_waitforsilence.c') diff --git a/apps/app_waitforsilence.c b/apps/app_waitforsilence.c index a6a7650c6..8aca88650 100644 --- a/apps/app_waitforsilence.c +++ b/apps/app_waitforsilence.c @@ -126,12 +126,10 @@ static int do_waiting(struct ast_channel *chan, int silencereqd, time_t waitstar } } - if (option_verbose > 6) - ast_verbose(VERBOSE_PREFIX_3 "Got %dms silence< %dms required\n", dspsilence, silencereqd); + ast_verb(3, "Got %dms silence< %dms required\n", dspsilence, silencereqd); if (dspsilence >= silencereqd) { - if (option_verbose > 2) - ast_verbose(VERBOSE_PREFIX_3 "Exiting with %dms silence >= %dms required\n", dspsilence, silencereqd); + ast_verb(3, "Exiting with %dms silence >= %dms required\n", dspsilence, silencereqd); /* Ended happily with silence */ res = 1; pbx_builtin_setvar_helper(chan, "WAITSTATUS", "SILENCE"); @@ -171,8 +169,7 @@ static int waitforsilence_exec(struct ast_channel *chan, void *data) ast_log(LOG_WARNING, "Using default value of 1000ms, 1 iteration, no timeout\n"); } - if (option_verbose > 2) - ast_verbose(VERBOSE_PREFIX_3 "Waiting %d time(s) for %d ms silence with %d timeout\n", iterations, silencereqd, timeout); + ast_verb(3, "Waiting %d time(s) for %d ms silence with %d timeout\n", iterations, silencereqd, timeout); time(&waitstart); res = 1; -- cgit v1.2.3