[svn-commits] lmadsen: branch 1.6.2 r227371 - in /branches/1.6.2: ./ apps/

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


Author: lmadsen
Date: Tue Nov  3 13:49:45 2009
New Revision: 227371

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

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

Modified: branches/1.6.2/apps/app_controlplayback.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/apps/app_controlplayback.c?view=diff&rev=227371&r1=227370&r2=227371
==============================================================================
--- branches/1.6.2/apps/app_controlplayback.c (original)
+++ branches/1.6.2/apps/app_controlplayback.c Tue Nov  3 13:49:45 2009
@@ -175,7 +175,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