Commit 5ff2faa5bd1c8f829bb16c27177692eacd7dbd03
1 parent
79f3ca97
添加日志
Showing
1 changed file
with
4 additions
and
0 deletions
src/main/java/com/genersoft/iot/vmp/vmanager/cloudRecord/CloudRecordController.java
| ... | ... | @@ -198,6 +198,8 @@ public class CloudRecordController { |
| 198 | 198 | @RequestParam(required = false) String callId, |
| 199 | 199 | @RequestParam(required = false) Integer recordId |
| 200 | 200 | ){ |
| 201 | + logger.info("[云端录像] 添加收藏,app={},stream={},mediaServerId={},startTime={},endTime={},callId={},recordId={}", | |
| 202 | + app, stream, mediaServerId, startTime, endTime, callId, recordId); | |
| 201 | 203 | if (recordId != null) { |
| 202 | 204 | return cloudRecordService.changeCollectById(recordId, true); |
| 203 | 205 | }else { |
| ... | ... | @@ -224,6 +226,8 @@ public class CloudRecordController { |
| 224 | 226 | @RequestParam(required = false) String callId, |
| 225 | 227 | @RequestParam(required = false) Integer recordId |
| 226 | 228 | ){ |
| 229 | + logger.info("[云端录像] 移除收藏,app={},stream={},mediaServerId={},startTime={},endTime={},callId={},recordId={}", | |
| 230 | + app, stream, mediaServerId, startTime, endTime, callId, recordId); | |
| 227 | 231 | if (recordId != null) { |
| 228 | 232 | return cloudRecordService.changeCollectById(recordId, false); |
| 229 | 233 | }else { | ... | ... |