修复一处日志打印错误

This commit is contained in:
xiaoxie 2022-04-24 09:51:54 +08:00
parent 6c48fb23ca
commit 5fbece4cd8

View File

@ -63,7 +63,7 @@ public class GBRecordController {
public DeferredResult<ResponseEntity<RecordInfo>> recordinfo(@PathVariable String deviceId,@PathVariable String channelId, String startTime, String endTime){
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);