From: Naveen Albert Date: Thu, 2 Sep 2021 23:20:43 +0000 (+0000) Subject: app_stack: Include current location if branch fails X-Git-Tag: 19.0.0-rc1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fe3a745e434e74a43876578a72dbb7b99851329;p=thirdparty%2Fasterisk.git app_stack: Include current location if branch fails Previously, the error emitted when app_stack tries to branch to a dialplan location that doesn't exist has included only the information about the attempted branch in the error log. This adds the current location as well so users can see where the branch failed in the logs. ASTERISK-29626 Change-Id: Ia23502ab2ad21485a1ac74295063a8f25a6df5ce --- diff --git a/apps/app_stack.c b/apps/app_stack.c index 179694b7e4..3c857a9356 100644 --- a/apps/app_stack.c +++ b/apps/app_stack.c @@ -590,8 +590,8 @@ static int gosub_exec(struct ast_channel *chan, const char *data) ast_channel_unlock(chan); if (!ast_exists_extension(chan, dest_context, dest_exten, dest_priority, caller_id)) { - ast_log(LOG_ERROR, "Attempt to reach a non-existent destination for %s: (Context:%s, Extension:%s, Priority:%d)\n", - app_gosub, dest_context, dest_exten, dest_priority); + ast_log(LOG_ERROR, "%s attempted to reach non-existent destination '%s,%s,%d' from '%s,%s,%d'", + app_gosub, dest_context, dest_exten, dest_priority, orig_context, orig_exten, orig_priority); goto error_exit; }