make it a debug log

This commit is contained in:
Richard Alam 2010-08-11 05:12:12 -04:00
parent 661b0c8f3a
commit 51f0e3237d
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ public class FlashToSipAudioStream {
try {
AudioByteData abd = audioDataQ.take();
long delay = System.currentTimeMillis() - abd.getTimestamp();
System.out.println(" F2S [" + audioDataQ.size() + "," + delay + "]");
log.debug(" F2S [" + audioDataQ.size() + "," + delay + "]");
transcoder.transcodeAudio(abd.getData(), 1, abd.getData().length-1, new TranscodedAudioListener());
} catch (InterruptedException e) {
// TODO Auto-generated catch block

View File

@ -114,7 +114,7 @@ public class SipToFlashAudioStream implements TranscodedAudioDataListener, RtpSt
try {
AudioByteData abd = audioDataQ.take();
long delay = System.currentTimeMillis() - abd.getTimestamp();
System.out.println("S2F [" + audioDataQ.size() + "," + delay + "]");
log.debug("S2F [" + audioDataQ.size() + "," + delay + "]");
transcoder.transcode(abd.getData(), this);
} catch (InterruptedException e) {
// TODO Auto-generated catch block