修复日志打印不当

pull/1669/head
648540858 2024-10-30 15:30:24 +08:00
parent 6141a8bc45
commit da18081fca
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public class AckRequestProcessor extends SIPRequestProcessorParent implements In
redisCatchStorage.sendPlatformStartPlayMsg(sendRtpItem, deviceChannel, parentPlatform); redisCatchStorage.sendPlatformStartPlayMsg(sendRtpItem, deviceChannel, parentPlatform);
}catch (ControllerException e) { }catch (ControllerException e) {
log.error("RTP推流失败: ", e); log.error("RTP推流失败: {}", e.getMessage());
playService.startSendRtpStreamFailHand(sendRtpItem, parentPlatform, callIdHeader); playService.startSendRtpStreamFailHand(sendRtpItem, parentPlatform, callIdHeader);
} }
} }