648540858
2023-02-07 31dcdab4d8b71ae5a0e7a2bcf363c990b58c0d8f
src/main/java/com/genersoft/iot/vmp/gb28181/transmit/event/request/impl/message/response/cmd/BroadcastResponseMessageHandler.java
@@ -62,7 +62,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);