dect
/
asterisk
Archived
13
0
Fork 0

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: http://svn.digium.com/svn/asterisk/trunk@227368 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
lmadsen 2009-11-03 19:48:53 +00:00
parent 6d95b82556
commit 51baadc56b
1 changed files with 1 additions and 1 deletions

View File

@ -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))