Skip to content

Commit

Permalink
modify log depth of scheduling
Browse files Browse the repository at this point in the history
  • Loading branch information
D-w-nJ authored Sep 27, 2023
1 parent 0712f00 commit bf77185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/m9d/sroom/gpt/service/GPTService.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class GPTService {
private final Gson gson;

public void saveResultFromFastApi() {
log.info("scheduling for request fastAPI to get summary and quizzes.");
log.debug("scheduling for request fastAPI to get summary and quizzes.");

String resultStr;
try {
Expand All @@ -45,7 +45,7 @@ public void saveResultFromFastApi() {
if(resultStr == null){
return;
}else{
log.info("response body from gpt server = {}", resultStr);
log.debug("response body from gpt server = {}", resultStr);
}

MaterialVo resultVo = getMaterialVo(resultStr);
Expand Down

0 comments on commit bf77185

Please sign in to comment.