去除查询类api调用的日志

This commit is contained in:
648540858
2021-11-02 16:56:24 +08:00
parent bb226c431e
commit b1e5a86916
4 changed files with 33 additions and 33 deletions

View File

@@ -50,9 +50,9 @@ public class ApiDeviceController {
@RequestParam(required = false)String q,
@RequestParam(required = false)Boolean online ){
if (logger.isDebugEnabled()) {
logger.debug("查询所有视频设备API调用");
}
// if (logger.isDebugEnabled()) {
// logger.debug("查询所有视频设备API调用");
// }
JSONObject result = new JSONObject();
List<Device> devices;
if (start == null || limit ==null) {
@@ -98,9 +98,9 @@ public class ApiDeviceController {
@RequestParam(required = false)String q,
@RequestParam(required = false)Boolean online ){
if (logger.isDebugEnabled()) {
logger.debug("查询所有视频设备API调用");
}
// if (logger.isDebugEnabled()) {
// logger.debug("查询所有视频设备API调用");
// }
JSONObject result = new JSONObject();
// 查询设备是否存在
Device device = storager.queryVideoDevice(serial);