summaryrefslogtreecommitdiff
path: root/res/res_pjsip_exten_state.c
diff options
context:
space:
mode:
authorGeorge Joseph <george.joseph@fairview5.com>2015-01-07 18:17:05 +0000
committerGeorge Joseph <george.joseph@fairview5.com>2015-01-07 18:17:05 +0000
commita10d2966b67a2e52811a7e4fa636b630f1fef741 (patch)
tree1105aef7e0626619cdc847469853c6539fd0adf2 /res/res_pjsip_exten_state.c
parent13ed8f73edbe95c0455a09d7dcc05d7da8aa4643 (diff)
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/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@430319 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_pjsip_exten_state.c')
-rw-r--r--res/res_pjsip_exten_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_pjsip_exten_state.c b/res/res_pjsip_exten_state.c
index 332f45b3a..a8740e515 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;
}