@@ -82,7 +82,7 @@ class MyAudioMediaPort(pj.AudioMediaPort):
if self.asr: # 如果ASR实例存在,则发送音频数据
# if self.first:
# self.first = False
- self.call.logger.warn("Received audio frame: %s, %s %s", self.call.session_id,frame.buf, frame.size)
+ self.call.logger.warn("Received audio frame: %s, %s, %s, %s", self.call.session_id,frame.buf, len(frame.buf),frame.size)
self.asr.send_audio(frame.buf)
try: