diff --git a/apps/app_dial.c b/apps/app_dial.c index d5b7ca471581ee002e59eb312e8e35cfe7a5b92e..f0d40a2e38df96ab91041980c65c06d33c0ebc89 100755 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -250,7 +250,7 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu /* Setup parameters */ o->chan = ast_request(tech, in->nativeformats, stuff, &cause); if (!o->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); o->stillgoing = 0; HANDLE_CAUSE(cause, in); } else {