[asterisk-commits] mjordan: branch 13 r429519 - /branches/13/res/res_agi.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Dec 12 16:53:08 CST 2014


Author: mjordan
Date: Fri Dec 12 16:53:05 2014
New Revision: 429519

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=429519
Log:
res/res_agi: Make Verbose message for 'stream file' match other playbacks

The Verbose message displayed when a file is played back via 'stream file'
was formatted differently than other playbacks:
* It didn't include the channel name
* It didn't include the channel language
It does, however, include the playback offset as well as any escape digits.
That information was kept; however, this patch updates the formatting to more
closely match the Verbose messages displayed when a file is played back by
'control stream file', Playback, ControlPlayback, or any other file playback
operation.

Modified:
    branches/13/res/res_agi.c

Modified: branches/13/res/res_agi.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/res/res_agi.c?view=diff&rev=429519&r1=429518&r2=429519
==============================================================================
--- branches/13/res/res_agi.c (original)
+++ branches/13/res/res_agi.c Fri Dec 12 16:53:05 2014
@@ -2210,8 +2210,9 @@
 	if ((vfs = ast_openvstream(chan, argv[2], ast_channel_language(chan)))) {
 		ast_debug(1, "Ooh, found a video stream, too\n");
 	}
-
-	ast_verb(3, "Playing '%s' (escape_digits=%s) (sample_offset %ld)\n", argv[2], edigits, sample_offset);
+	ast_verb(3, "<%s> Playing '%s.%s' (escape_digits=%s) (sample_offset %ld) (language '%s')\n",
+		ast_channel_name(chan), argv[2], ast_format_get_name(ast_channel_writeformat(chan)),
+		edigits, sample_offset, S_OR(ast_channel_language(chan), "default"));
 
 	ast_seekstream(fs, 0, SEEK_END);
 	max_length = ast_tellstream(fs);




More information about the asterisk-commits mailing list