Author: gtjoseph Date: Wed Jan 7 12:17:05 2015 New Revision: 430319 URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=430319 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/ 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=430319&r1=430318&r2=430319 ============================================================================== --- branches/13/res/res_pjsip_exten_state.c (original) +++ branches/13/res/res_pjsip_exten_state.c Wed Jan 7 12:17:05 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; } -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- svn-commits mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/svn-commits
