[asterisk-commits] kmoore: branch group/pimp_my_sip r388524 - /team/group/pimp_my_sip/main/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon May 13 11:43:19 CDT 2013


Author: kmoore
Date: Mon May 13 11:43:17 2013
New Revision: 388524

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=388524
Log:
Convert ast_log DEBUG messages to ast_debug

Modified:
    team/group/pimp_my_sip/main/sdp_srtp.c

Modified: team/group/pimp_my_sip/main/sdp_srtp.c
URL: http://svnview.digium.com/svn/asterisk/team/group/pimp_my_sip/main/sdp_srtp.c?view=diff&rev=388524&r1=388523&r2=388524
==============================================================================
--- team/group/pimp_my_sip/main/sdp_srtp.c (original)
+++ team/group/pimp_my_sip/main/sdp_srtp.c Mon May 13 11:43:17 2013
@@ -297,7 +297,7 @@
 	}
 
 	if (!crypto->tag) {
-		ast_log(LOG_DEBUG, "Accepting crypto tag %s\n", tag);
+		ast_debug(1, "Accepting crypto tag %s\n", tag);
 		crypto->tag = ast_strdup(tag);
 		if (!crypto->tag) {
 			ast_log(LOG_ERROR, "Could not allocate memory for tag\n");
@@ -327,7 +327,7 @@
 		return -1;
 	}
 
-	ast_log(LOG_DEBUG, "Crypto line: a=crypto:%s\n", p->a_crypto);
+	ast_debug(1, "Crypto line: a=crypto:%s\n", p->a_crypto);
 
 	return 0;
 }




More information about the asterisk-commits mailing list