[svn-commits] lmadsen: branch 1.6.1 r227370 - in /branches/1.6.1: ./ apps/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 3 13:49:35 CST 2009


Author: lmadsen
Date: Tue Nov  3 13:49:31 2009
New Revision: 227370

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=227370
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.1/   (props changed)
    branches/1.6.1/apps/app_controlplayback.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/apps/app_controlplayback.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/apps/app_controlplayback.c?view=diff&rev=227370&r1=227369&r2=227370
==============================================================================
--- branches/1.6.1/apps/app_controlplayback.c (original)
+++ branches/1.6.1/apps/app_controlplayback.c Tue Nov  3 13:49:31 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 svn-commits mailing list