[asterisk-commits] russell: branch 1.8 r283951 - /branches/1.8/pbx/pbx_realtime.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Aug 27 16:34:00 CDT 2010


Author: russell
Date: Fri Aug 27 16:33:55 2010
New Revision: 283951

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=283951
Log:
Print exten at context:priority in verbose messages from pbx_realtime.

Modified:
    branches/1.8/pbx/pbx_realtime.c

Modified: branches/1.8/pbx/pbx_realtime.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/pbx/pbx_realtime.c?view=diff&rev=283951&r1=283950&r2=283951
==============================================================================
--- branches/1.8/pbx/pbx_realtime.c (original)
+++ branches/1.8/pbx/pbx_realtime.c Fri Aug 27 16:33:55 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