From: Joshua Colp Date: Sat, 14 Feb 2015 18:31:15 +0000 (+0000) Subject: res_pjsip_exten_state: Improve log message when a subscription is attempted to a... X-Git-Tag: 14.0.0-beta1~1251 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fae6bf8acef7f45fc168080c2d32bee79f0891f0;p=thirdparty%2Fasterisk.git res_pjsip_exten_state: Improve log message when a subscription is attempted to a non-existent extension. ASTERISK-24716 #close Reported by: Rusty Newton ........ Merged revisions 431754 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@431755 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_pjsip_exten_state.c b/res/res_pjsip_exten_state.c index 7649c7c297..45bfff605e 100644 --- a/res/res_pjsip_exten_state.c +++ b/res/res_pjsip_exten_state.c @@ -334,7 +334,8 @@ 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_NOTICE, "Extension %s does not exist or has no associated hint\n", resource); + ast_log(LOG_NOTICE, "Extension state subscription failed: Extension %s does not exist in context '%s' or has no associated hint\n", + endpoint->context, resource); return 404; }