[asterisk-commits] russell: trunk r283958 - in /trunk: ./ pbx/pbx_realtime.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Aug 27 16:50:19 CDT 2010
Author: russell
Date: Fri Aug 27 16:50:15 2010
New Revision: 283958
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=283958
Log:
Merged revisions 283951 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8
........
r283951 | russell | 2010-08-27 16:33:55 -0500 (Fri, 27 Aug 2010) | 2 lines
Print exten at context:priority in verbose messages from pbx_realtime.
........
Modified:
trunk/ (props changed)
trunk/pbx/pbx_realtime.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: trunk/pbx/pbx_realtime.c
URL: http://svnview.digium.com/svn/asterisk/trunk/pbx/pbx_realtime.c?view=diff&rev=283958&r1=283957&r2=283958
==============================================================================
--- trunk/pbx/pbx_realtime.c (original)
+++ trunk/pbx/pbx_realtime.c Fri Aug 27 16:50:15 2010
@@ -349,7 +349,8 @@
appdata[0] = 0; /* just in case the substitute var func isn't called */
if(!ast_strlen_zero(tmp))
pbx_substitute_variables_helper(chan, tmp, appdata, sizeof(appdata) - 1);
- ast_verb(3, "Executing %s(\"%s\", \"%s\")\n",
+ ast_verb(3, "Executing [%s@%s:%d] %s(\"%s\", \"%s\")\n",
+ chan->exten, chan->context, chan->priority,
term_color(tmp1, app, COLOR_BRCYAN, 0, sizeof(tmp1)),
term_color(tmp2, chan->name, COLOR_BRMAGENTA, 0, sizeof(tmp2)),
term_color(tmp3, S_OR(appdata, ""), COLOR_BRMAGENTA, 0, sizeof(tmp3)));
More information about the asterisk-commits
mailing list