Merge "app_record: Do not hang up if beep audio is missing" into 16

This commit is contained in:
Joshua Colp 2020-01-14 09:10:57 -06:00 committed by Gerrit Code Review
commit 6dc9239367
1 changed files with 2 additions and 1 deletions

View File

@ -358,7 +358,8 @@ static int record_exec(struct ast_channel *chan, const char *data)
if (!res) {
res = ast_waitstream(chan, "");
} else {
ast_log(LOG_WARNING, "ast_streamfile failed on %s\n", ast_channel_name(chan));
ast_log(LOG_WARNING, "ast_streamfile(beep) failed on %s\n", ast_channel_name(chan));
res = 0;
}
ast_stopstream(chan);
}