From: George Joseph Date: Wed, 7 Jan 2015 18:17:42 +0000 (+0000) Subject: res_pjsip_exten_state: Change 'does not exist' warning to notice X-Git-Tag: 14.0.0-beta1~1344 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e83853eebc901a3b0c6c0b66acc268fa62b3fd32;p=thirdparty%2Fasterisk.git 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 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@430321 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_pjsip_exten_state.c b/res/res_pjsip_exten_state.c index 332f45b3ac..a8740e5153 100644 --- a/res/res_pjsip_exten_state.c +++ b/res/res_pjsip_exten_state.c @@ -334,7 +334,7 @@ static int new_subscribe(struct ast_sip_endpoint *endpoint, 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; }