视频下载 添加 调用日志上报

This commit is contained in:
shikong 2024-03-26 15:09:56 +08:00
parent 5003b1268b
commit bc5ff7505a

View File

@ -41,6 +41,11 @@ public class ReportService {
headers.add(headerKey, header);
});
log.info("上报调用信息 {}", reportReq);
reportApi.report(headers, reportReq);
try{
reportApi.report(headers, reportReq);
} catch (Exception e){
log.error("上报调用信息失败", e);
}
}
}