[asterisk-commits] pabelanger: trunk r362043 - /trunk/main/srv.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Thu Apr 12 15:08:31 CDT 2012
    
    
  
Author: pabelanger
Date: Thu Apr 12 15:08:26 2012
New Revision: 362043
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=362043
Log:
Convert SRV lookup to debug message
This helps clean up the Asterisk CLI by converting the log message from verbose
to debug
Modified:
    trunk/main/srv.c
Modified: trunk/main/srv.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/srv.c?view=diff&rev=362043&r1=362042&r2=362043
==============================================================================
--- trunk/main/srv.c (original)
+++ trunk/main/srv.c Thu Apr 12 15:08:26 2012
@@ -286,7 +286,7 @@
 		ast_copy_string(host, current->host, hostlen);
 		*port = current->port;
 		ast_free(current);
-		ast_verb(4, "ast_get_srv: SRV lookup for '%s' mapped to host %s, port %d\n",
+		ast_debug(4, "ast_get_srv: SRV lookup for '%s' mapped to host %s, port %d\n",
 				    service, host, *port);
 	} else {
 		host[0] = '\0';
    
    
More information about the asterisk-commits
mailing list