[asterisk-commits] gtjoseph: branch 13 r430319 - /branches/13/res/res_pjsip_exten_state.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 7 12:17:09 CST 2015
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;
}
More information about the asterisk-commits
mailing list