src/main/java/com/genersoft/iot/vmp/gb28181/transmit/event/request/impl/message/response/cmd/BroadcastResponseMessageHandler.java
@@ -63,7 +63,12 @@ return; } String result = getText(rootElement, "Result"); logger.info("[语音广播]回复:{}, {}/{}", result, device.getDeviceId(), channelId ); Element infoElement = rootElement.element("Info"); String reason = null; if (infoElement != null) { reason = getText(infoElement, "Reason"); } logger.info("[语音广播]回复:{}, {}/{}", reason == null? result : result + ": " + reason, device.getDeviceId(), channelId ); // 回复200 OK responseAck(request, Response.OK);