Commit 9fb7246fec6a216c8a922e3c0ed009a60aeb2bfc

Authored by 648540858
Committed by GitHub
2 parents 7f965a69 bea61f90

Merge pull request #449 from hotcoffie/wvp-28181-2.0

修复一处日志打印错误
src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/record/GBRecordController.java
... ... @@ -63,7 +63,7 @@ public class GBRecordController {
63 63 public DeferredResult<ResponseEntity<RecordInfo>> recordinfo(@PathVariable String deviceId,@PathVariable String channelId, String startTime, String endTime){
64 64  
65 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 69 Device device = storager.queryVideoDevice(deviceId);
... ...