[svn-commits] gtjoseph: trunk r430321 - in /trunk: ./ res/res_pjsip_exten_state.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jan 7 12:17:46 CST 2015


Author: gtjoseph
Date: Wed Jan  7 12:17:42 2015
New Revision: 430321

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=430321
Log:
res_pjsip_exten_state: Change 'does not exist' warning to notice

The 'new_subscribe: Extension <> does not exist or has no associated hint'
is a config issue and doesn't need to clutter up logs with warnings.
Changed to notice.

Tested-by: George Joseph

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

Merged revisions 430319 from http://svn.asterisk.org/svn/asterisk/branches/13

Modified:
    trunk/   (props changed)
    trunk/res/res_pjsip_exten_state.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-13-merged' - no diff available.

Modified: trunk/res/res_pjsip_exten_state.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_pjsip_exten_state.c?view=diff&rev=430321&r1=430320&r2=430321
==============================================================================
--- trunk/res/res_pjsip_exten_state.c (original)
+++ trunk/res/res_pjsip_exten_state.c Wed Jan  7 12:17:42 2015
@@ -334,7 +334,7 @@
 		const char *resource)
 {
 	if (!ast_exists_extension(NULL, endpoint->context, resource, PRIORITY_HINT, NULL)) {
-		ast_log(LOG_WARNING, "Extension %s does not exist or has no associated hint\n", resource);
+		ast_log(LOG_NOTICE, "Extension %s does not exist or has no associated hint\n", resource);
 		return 404;
 	}
 




More information about the svn-commits mailing list