aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-21 20:27:21 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-21 20:27:21 +0000
commitaf7dc2784e0d3b5224d06b93c19f4958662876c1 (patch)
tree8f74ffc7fcab933a1a1c79008a6ab7ad29b4d6f1 /apps
parentd780fba964fc205ed4f7114e456df90325131208 (diff)
Oops
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4307 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_dial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index f0d40a2e3..f78275203 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -774,7 +774,7 @@ static int dial_exec(struct ast_channel *chan, void *data)
tmp->chan = ast_request(tech, chan->nativeformats, numsubst, &cause);
if (!tmp->chan) {
/* If we can't, just go on to the next call */
- ast_log(LOG_NOTICE, "Unable to create channel of type '%s'\n", tech);
+ ast_log(LOG_NOTICE, "Unable to create channel of type '%s' (cause %d)\n", tech, cause);
HANDLE_CAUSE(cause, chan);
cur = rest;
continue;
@@ -800,7 +800,7 @@ static int dial_exec(struct ast_channel *chan, void *data)
ast_hangup(tmp->chan);
tmp->chan = ast_request(tech, chan->nativeformats, stuff, &cause);
if (!tmp->chan) {
- ast_log(LOG_NOTICE, "Unable to create local channel for call forward to '%s/%s'\n", tech, stuff);
+ ast_log(LOG_NOTICE, "Unable to create local channel for call forward to '%s/%s' (cause %d)\n", tech, stuff, cause);
HANDLE_CAUSE(cause, chan);
cur = rest;
continue;