make it a debug log
This commit is contained in:
parent
661b0c8f3a
commit
51f0e3237d
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user