[Home]

Summary:ASTERISK-11412: [patch] replace ast_verbose with ast_debug(1, for debugging
Reporter:Michiel van Baak (mvanbaak)Labels:
Date Opened:2008-02-10 07:14:21.000-0600Date Closed:2008-02-11 08:39:53.000-0600
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Channels/chan_skinny
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:( 0) 2008021000-skinnydebug.diff.txt
Description:chan_skinny uses code like this for debug messages:
if (skinny_debug)
 ast_verbose("message goes here");

This patch makes it:
if (skinny_debug)
 ast_debug(1, "message goes here");

This to make it more in line with other channel drivers
Comments:By: Digium Subversion (svnbot) 2008-02-11 08:39:53.000-0600

Repository: asterisk
Revision: 103313

U   trunk/channels/chan_skinny.c

------------------------------------------------------------------------
r103313 | file | 2008-02-11 08:39:51 -0600 (Mon, 11 Feb 2008) | 6 lines

Change chan_skinny to use debug messages as appropriate.
(closes issue ASTERISK-11412)
Reported by: mvanbaak
Patches:
     2008021000-skinnydebug.diff.txt uploaded by mvanbaak (license 7)

------------------------------------------------------------------------

http://svn.digium.com/view/asterisk?view=rev&revision=103313