From: Jonathan Rose Date: Tue, 5 Apr 2011 14:11:36 +0000 (+0000) Subject: Backporting trunk change to add verbosity to 'L' option in meetme X-Git-Tag: 1.6.2.19-rc1~3^2~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f24755ffd7664ad4335c50ad03beae13eb690bd5;p=thirdparty%2Fasterisk.git Backporting trunk change to add verbosity to 'L' option in meetme git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@312762 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 6bf0e7a938..c1111d40fa 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -2150,7 +2150,15 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c play_warning = warning_freq = 0; } } - + + ast_verb(3, "Setting conference duration limit to: %ldms.\n", timelimit); + if (play_warning) { + ast_verb(3, "Setting warning time to %ldms from the conference duration limit.\n", play_warning); + } + if (warning_freq) { + ast_verb(3, "Setting warning frequency to %ldms.\n", warning_freq); + } + ast_channel_lock(chan); if ((var = pbx_builtin_getvar_helper(chan, "CONF_LIMIT_WARNING_FILE"))) { var = ast_strdupa(var);