Commit bea61f909d17e4acc55ba0500feb264e879a92ef
1 parent
b8166053
修复一处日志打印错误
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 | 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); | ... | ... |