From f457dfecd10c722790d0526c40206fabf1521637 Mon Sep 17 00:00:00 2001
From: Leif Madsen <leif@leifmadsen.com>
Date: Tue, 3 Nov 2009 19:48:53 +0000
Subject: [PATCH] Change warning message to debug message.

app_controlplayback outputs a warning, when in fact it is normal.

(closes issue #16071)
Reported by: atis
Patches:
      controlplayback_warning.patch uploaded by atis (license 242)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@227368 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_controlplayback.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/app_controlplayback.c b/apps/app_controlplayback.c
index 1d6dcec471..bbeea30376 100644
--- a/apps/app_controlplayback.c
+++ b/apps/app_controlplayback.c
@@ -175,7 +175,7 @@ static int controlplayback_exec(struct ast_channel *chan, const char *data)
 		else
 			args.rev = NULL;
 	}
-	ast_log(LOG_WARNING, "args.fwd = %s, args.rew = %s\n", args.fwd, args.rev);
+	ast_debug(1, "Forward key = %s, Rewind key = %s\n", args.fwd, args.rev);
 	if (args.stop && !is_on_phonepad(*args.stop))
 		args.stop = NULL;
 	if (args.pause && !is_on_phonepad(*args.pause))
-- 
GitLab