[svn-commits] gtjoseph: branch 13 r431403 - /branches/13/res/res_pjsip_exten_state.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jan 29 10:46:49 CST 2015


Author: gtjoseph
Date: Thu Jan 29 10:46:39 2015
New Revision: 431403

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=431403
Log:
res_pjsip_exten_state: Reduce log clutter... change a WARNING to a VERBOSE/2

Reduce log clutter by changing the "Watcher for hint %s (removed|deactivated)"
message from WARNING to VERBOSE/2.

Tested-by: George Joseph

Review: https://reviewboard.asterisk.org/r/4387/


Modified:
    branches/13/res/res_pjsip_exten_state.c

Modified: branches/13/res/res_pjsip_exten_state.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/res/res_pjsip_exten_state.c?view=diff&rev=431403&r1=431402&r2=431403
==============================================================================
--- branches/13/res/res_pjsip_exten_state.c (original)
+++ branches/13/res/res_pjsip_exten_state.c Thu Jan 29 10:46:39 2015
@@ -212,7 +212,7 @@
 
 	if ((info->exten_state == AST_EXTENSION_DEACTIVATED) ||
 	    (info->exten_state == AST_EXTENSION_REMOVED)) {
-		ast_log(LOG_WARNING, "Watcher for hint %s %s\n", exten, info->exten_state
+		ast_verb(2, "Watcher for hint %s %s\n", exten, info->exten_state
 			 == AST_EXTENSION_REMOVED ? "removed" : "deactivated");
 		task_data->terminate = 1;
 	}




More information about the svn-commits mailing list