Commit f5b019e9983b443454547453a96b4e496645437c

Authored by lawrencehj
1 parent 619a66f9

更正打字错误

src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/play/PlayController.java
... ... @@ -101,7 +101,7 @@ public class PlayController {
101 101 @GetMapping("/stop/{deviceId}/{channelId}")
102 102 public DeferredResult<ResponseEntity<String>> playStop(@PathVariable String deviceId, @PathVariable String channelId) {
103 103  
104   - logger.debug(String.format("设备预览/回放停止API调用,streamId:%s/$s", deviceId, channelId ));
  104 + logger.debug(String.format("设备预览/回放停止API调用,streamId:%s/%s", deviceId, channelId ));
105 105  
106 106 UUID uuid = UUID.randomUUID();
107 107 DeferredResult<ResponseEntity<String>> result = new DeferredResult<ResponseEntity<String>>();
... ... @@ -147,7 +147,7 @@ public class PlayController {
147 147  
148 148 // 超时处理
149 149 result.onTimeout(()->{
150   - logger.warn(String.format("设备预览/回放停止超时,deviceId/channelId:%s/$s ", deviceId, channelId));
  150 + logger.warn(String.format("设备预览/回放停止超时,deviceId/channelId:%s/%s ", deviceId, channelId));
151 151 RequestMessage msg = new RequestMessage();
152 152 msg.setId(DeferredResultHolder.CALLBACK_CMD_STOP + uuid);
153 153 msg.setData("Timeout");
... ...