[asterisk-commits] lmadsen: branch 1.6.0 r227369 - in /branches/1.6.0: ./ apps/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Nov 3 13:49:21 CST 2009
Author: lmadsen
Date: Tue Nov 3 13:49:17 2009
New Revision: 227369
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=227369
Log:
Merged revisions 227368 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r227368 | lmadsen | 2009-11-03 13:48:53 -0600 (Tue, 03 Nov 2009) | 8 lines
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)
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/apps/app_controlplayback.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/apps/app_controlplayback.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/apps/app_controlplayback.c?view=diff&rev=227369&r1=227368&r2=227369
==============================================================================
--- branches/1.6.0/apps/app_controlplayback.c (original)
+++ branches/1.6.0/apps/app_controlplayback.c Tue Nov 3 13:49:17 2009
@@ -140,7 +140,7 @@
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))
More information about the asterisk-commits
mailing list