Commit bea61f909d17e4acc55ba0500feb264e879a92ef

Authored by xiaoxie
1 parent b8166053

修复一处日志打印错误

src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/record/GBRecordController.java
@@ -63,7 +63,7 @@ public class GBRecordController { @@ -63,7 +63,7 @@ public class GBRecordController {
63 public DeferredResult<ResponseEntity<RecordInfo>> recordinfo(@PathVariable String deviceId,@PathVariable String channelId, String startTime, String endTime){ 63 public DeferredResult<ResponseEntity<RecordInfo>> recordinfo(@PathVariable String deviceId,@PathVariable String channelId, String startTime, String endTime){
64 64
65 if (logger.isDebugEnabled()) { 65 if (logger.isDebugEnabled()) {
66 - logger.debug(String.format("录像信息查询 API调用,deviceId:%s ,startTime:%s, startTime:%s",deviceId, startTime, endTime)); 66 + logger.debug(String.format("录像信息查询 API调用,deviceId:%s ,startTime:%s, endTime:%s",deviceId, startTime, endTime));
67 } 67 }
68 68
69 Device device = storager.queryVideoDevice(deviceId); 69 Device device = storager.queryVideoDevice(deviceId);