[asterisk-commits] seanbright: trunk r373142 - /trunk/main/logger.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 18 15:19:53 CDT 2012
Author: seanbright
Date: Tue Sep 18 15:19:49 2012
New Revision: 373142
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=373142
Log:
Make the casing of CALL_ID in debug messages consistent to satisfy my OCD.
Modified:
trunk/main/logger.c
Modified: trunk/main/logger.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/logger.c?view=diff&rev=373142&r1=373141&r2=373142
==============================================================================
--- trunk/main/logger.c (original)
+++ trunk/main/logger.c Tue Sep 18 15:19:49 2012
@@ -1340,7 +1340,7 @@
ast_log(LOG_ERROR, "Tried to clean callid thread storage with no callid in thread storage.\n");
return -1;
} else {
- ast_debug(3, "Call_ID [C-%08x] being removed from thread.\n", (*pointing)->call_identifier);
+ ast_debug(3, "CALL_ID [C-%08x] being removed from thread.\n", (*pointing)->call_identifier);
*pointing = ast_callid_unref(*pointing);
return 0;
}
More information about the asterisk-commits
mailing list