添加第二种语音对讲实现

This commit is contained in:
648540858
2022-09-29 16:27:59 +08:00
parent ebe8667b13
commit 06bbe3fe01
29 changed files with 882 additions and 582 deletions

View File

@@ -39,12 +39,12 @@ public class SsrcTransactionNotFoundException extends Exception{
@Override
public String getMessage() {
StringBuffer msg = new StringBuffer();
msg.append(StringFormatter.format("缓存事务信息未找到device%s channel: %s ", deviceId, channelId));
msg.append(String.format("缓存事务信息未找到device%s channel: %s ", deviceId, channelId));
if (callId != null) {
msg.append("callId: " + callId);
msg.append(",callId: " + callId);
}
if (stream != null) {
msg.append("stream: " + stream);
msg.append(",stream: " + stream);
}
return msg.toString();
}