]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 312762 via svnmerge from
authorJonathan Rose <jrose@digium.com>
Tue, 5 Apr 2011 14:13:15 +0000 (14:13 +0000)
committerJonathan Rose <jrose@digium.com>
Tue, 5 Apr 2011 14:13:15 +0000 (14:13 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r312762 | jrose | 2011-04-05 09:11:36 -0500 (Tue, 05 Apr 2011) | 1 line

  Backporting trunk change to add verbosity to 'L' option in meetme
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312765 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_meetme.c

index 1a440af02af39cd37af45c7d3cc8293b13941bd1..81edfc0f7b855f645a07f9f5b5ad0e54217a257f 100644 (file)
@@ -2287,7 +2287,15 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc
                                        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);