zlm rtp 推流失败 日志

This commit is contained in:
shikong 2024-03-14 09:31:16 +08:00
parent 7b350e899b
commit 7b230144d3

View File

@ -145,7 +145,7 @@ public class DeviceProxyService {
return startSendRtpResp; return startSendRtpResp;
}); });
} catch (Exception e) { } catch (Exception e) {
log.error("zlm rtp 推流失败, {} {}, {}", device.getGbChannelId(), callId, e.getMessage()); log.error("zlm rtp 推流失败, {} {} {}, {}", device.getDeviceCode(),device.getGbChannelId(), callId, e.getMessage());
Optional.ofNullable(zlmStreamChangeHookService.getUnregistHandler(DEFAULT_ZLM_APP).remove(callId)) Optional.ofNullable(zlmStreamChangeHookService.getUnregistHandler(DEFAULT_ZLM_APP).remove(callId))
.ifPresent(ZlmStreamChangeHookService.ZlmStreamChangeHookHandler::handler); .ifPresent(ZlmStreamChangeHookService.ZlmStreamChangeHookHandler::handler);
throw new RuntimeException(e); throw new RuntimeException(e);
@ -485,7 +485,7 @@ public class DeviceProxyService {
return startSendRtpResp; return startSendRtpResp;
}); });
} catch (Exception e){ } catch (Exception e){
log.error("zlm rtp 推流失败",e); log.error("zlm rtp 推流失败, {} {} {}, {}", device.getDeviceCode(),device.getGbChannelId(), callId, e.getMessage());
sendBye(request, device, ""); sendBye(request, device, "");
} }
}); });
@ -573,7 +573,7 @@ public class DeviceProxyService {
return startSendRtpResp; return startSendRtpResp;
}); });
} catch (Exception e){ } catch (Exception e){
log.error("zlm rtp 推流失败, {} {}, {}", device.getGbChannelId(), callId, e.getMessage()); log.error("zlm rtp 推流失败, {} {} {}, {}", device.getDeviceCode(),device.getGbChannelId(), callId, e.getMessage());
sendBye(request, device, ""); sendBye(request, device, "");
} }
}); });