Skip to content

Commit

Permalink
[Refactor] 불필요 로그 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
hen715 committed Sep 10, 2024
1 parent 4753369 commit 49ed1a6
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ public JsonArray getJsonData(String url){
.onStatus(HttpStatusCode::is4xxClientError, clientResponse -> Mono.just(new MyException(MyErrorCode.WEATHER_REQUEST_ERROR)))
.bodyToMono(String.class)
.block();
log.info(result.toString());
try {
JsonObject jsonObject = JsonParser.parseString(result).getAsJsonObject();
JsonObject body = jsonObject.getAsJsonObject("response").getAsJsonObject("body");
Expand Down

0 comments on commit 49ed1a6

Please sign in to comment.