feat(task): 添加 token 续期日志输出
- 在 SecurityAssociationDockingServiceTask 类中,续期 token 后增加日志输出 - 通过 log.info 方法打印续期后的 token 信息
This commit is contained in:
parent
5714f68ed8
commit
2e210d5435
|
@ -52,6 +52,7 @@ public class SecurityAssociationDockingServiceTask {
|
||||||
JSONObject jsonObject = JSON.parseObject(body);
|
JSONObject jsonObject = JSON.parseObject(body);
|
||||||
JSONObject data = jsonObject.getJSONObject("data");
|
JSONObject data = jsonObject.getJSONObject("data");
|
||||||
TOKEN = data.getString("token");
|
TOKEN = data.getString("token");
|
||||||
|
log.info("续期后的 token:{}", TOKEN);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue