From: Kinsey Moore Date: Wed, 9 Apr 2014 18:16:08 +0000 (+0000) Subject: res_stasis_answer: Add missing newlines X-Git-Tag: 12.3.0-rc1~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e9ebccb1247436f740f43ccc067115c3d24c1ce;p=thirdparty%2Fasterisk.git res_stasis_answer: Add missing newlines git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@412034 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_stasis_answer.c b/res/res_stasis_answer.c index bc7d2fba31..02dfab95e0 100644 --- a/res/res_stasis_answer.c +++ b/res/res_stasis_answer.c @@ -39,7 +39,7 @@ static int app_control_answer(struct stasis_app_control *control, struct ast_channel *chan, void *data) { const int delay = 0; - ast_debug(3, "%s: Answering", + ast_debug(3, "%s: Answering\n", stasis_app_control_get_channel_id(control)); return __ast_answer(chan, delay); } @@ -54,7 +54,7 @@ int stasis_app_control_answer(struct stasis_app_control *control) retval = stasis_app_send_command(control, app_control_answer, NULL); if (retval != 0) { - ast_log(LOG_WARNING, "%s: Failed to answer channel", + ast_log(LOG_WARNING, "%s: Failed to answer channel\n", stasis_app_control_get_channel_id(control)); return -1; }