Browse Source
Merge pull request #449 from hotcoffie/wvp-28181-2.0
修复一处日志打印错误
pull/451/head
648540858
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files 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 { |
|
|
public DeferredResult<ResponseEntity<RecordInfo>> recordinfo(@PathVariable String deviceId,@PathVariable String channelId, String startTime, String endTime){ |
|
|
public DeferredResult<ResponseEntity<RecordInfo>> recordinfo(@PathVariable String deviceId,@PathVariable String channelId, String startTime, String endTime){ |
|
|
|
|
|
|
|
|
if (logger.isDebugEnabled()) { |
|
|
if (logger.isDebugEnabled()) { |
|
|
logger.debug(String.format("录像信息查询 API调用,deviceId:%s ,startTime:%s, startTime:%s",deviceId, startTime, endTime)); |
|
|
logger.debug(String.format("录像信息查询 API调用,deviceId:%s ,startTime:%s, endTime:%s",deviceId, startTime, endTime)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
Device device = storager.queryVideoDevice(deviceId); |
|
|
Device device = storager.queryVideoDevice(deviceId); |
|
|