Commit 9fb7246fec6a216c8a922e3c0ed009a60aeb2bfc
Committed by
GitHub
Merge pull request #449 from hotcoffie/wvp-28181-2.0
修复一处日志打印错误
Showing
1 changed file
with
1 additions
and
1 deletions
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); |