فهرست منبع

Merge branch 'dev_v3.2.0' into release_v3.2.0

caozixuan 2 سال پیش
والد
کامیت
864357b74b

+ 0 - 4
teachcloud-common/src/main/java/com/qmth/teachcloud/common/sync/TeachCloudReportTaskUtils.java

@@ -68,10 +68,6 @@ public class TeachCloudReportTaskUtils {
             map.put("enable", validParam(enable, true, true, "是否启用标记"));
 
             String accessToken = createSign(schoolId, timestamp, saveUrl);
-            log.info("postUrl: " + postUrl);
-            for (String k : map.keySet()) {
-                log.info(k + " : " + map.get(k));
-            }
             String result = HttpUtil.postJson(postUrl, JacksonUtil.parseJson(map), accessToken, timestamp);
 
             JSONObject jsonObject = JSONObject.parseObject(result);

+ 0 - 2
teachcloud-common/src/main/java/com/qmth/teachcloud/common/util/HttpUtil.java

@@ -144,9 +144,7 @@ public class HttpUtil {
         ByteArrayOutputStream ou = null;
         try {
             in = getRespInputStream(request);
-            log.info("in : " + in);
             ou = new ByteArrayOutputStream();
-            log.info("ou : " + ou);
             IOUtils.copy(in, ou);
         } catch (Exception e) {
             log.error(SystemConstant.LOG_ERROR, e);

+ 0 - 1
teachcloud-report/src/main/java/com/qmth/teachcloud/report/api/OpenApiController.java

@@ -83,7 +83,6 @@ public class OpenApiController {
     @RequestMapping(value = "/semester_edit", method = RequestMethod.POST)
     @Aac(auth = BOOL.FALSE)
     public Result semesterEdit(@ApiParam(value = "接收学期数据信息", required = true) @RequestBody String result) throws IOException, IllegalAccessException {
-        log.info("result : " + result);
         Optional.ofNullable(result).orElseThrow(() -> ExceptionResultEnum.PARAMS_ERROR.exception("数据为空"));
         String decodeJson = URLDecoder.decode(result, SystemConstant.CHARSET_NAME);
         log.info("semesterEdit进来了,result:{}", decodeJson);