aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/pbx_ael.c
diff options
context:
space:
mode:
Diffstat (limited to 'pbx/pbx_ael.c')
-rw-r--r--pbx/pbx_ael.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pbx/pbx_ael.c b/pbx/pbx_ael.c
index 96719fe54..1a53c744b 100644
--- a/pbx/pbx_ael.c
+++ b/pbx/pbx_ael.c
@@ -835,8 +835,9 @@ static void check_includes(pval *includes)
/* find a matching context name */
struct pval *that_other_context = find_context(incl_context);
if (!that_other_context && strcmp(incl_context, "parkedcalls") != 0) {
- ast_log(LOG_WARNING, "Warning: file %s, line %d-%d: The included context '%s' cannot be found.\n",
- includes->filename, includes->startline, includes->endline, incl_context);
+ ast_log(LOG_WARNING, "Warning: file %s, line %d-%d: The included context '%s' cannot be found.\n\
+ (You may ignore this warning if '%s' exists in extensions.conf, or is created by another module. I cannot check for those.)\n",
+ includes->filename, includes->startline, includes->endline, incl_context, incl_context);
warns++;
}
}