[asterisk-commits] rmudgett: trunk r289254 - in /trunk: ./ main/channel.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Sep 29 11:17:31 CDT 2010


Author: rmudgett
Date: Wed Sep 29 11:17:27 2010
New Revision: 289254

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=289254
Log:
Merged revisions 289253 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r289253 | rmudgett | 2010-09-29 11:16:47 -0500 (Wed, 29 Sep 2010) | 1 line
  
  Make development error message indicate which channel.
........

Modified:
    trunk/   (props changed)
    trunk/main/channel.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: trunk/main/channel.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/channel.c?view=diff&rev=289254&r1=289253&r2=289254
==============================================================================
--- trunk/main/channel.c (original)
+++ trunk/main/channel.c Wed Sep 29 11:17:27 2010
@@ -3624,7 +3624,9 @@
 	 * this happens so that it can be addressed. 
 	 */
 	if (chan->fdno == -1) {
-		ast_log(LOG_ERROR, "ast_read() called with no recorded file descriptor.\n");
+		ast_log(LOG_ERROR,
+			"ast_read() on chan '%s' called with no recorded file descriptor.\n",
+			chan->name);
 	}
 #endif
 




More information about the asterisk-commits mailing list