Skip to content

Commit

Permalink
refactor: 필요없는 log 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjy committed Jun 30, 2024
1 parent 79686b8 commit 43f0208
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,12 @@ public class ClovaSummary {
private String CLIENT_ID;

public String summaryDebate(String messages) {
log.info("요약할 메세지: {}" ,messages);
try {
URL url = new URL(API_URL);
HttpURLConnection connection = createRequestHeader(url);
createRequestBody(connection, messages);

log.info("정상1");
StringBuilder response = getResponse(connection);
log.info("정상2");
return parseResponse(response);
} catch (Exception e) {
e.printStackTrace();
Expand Down

0 comments on commit 43f0208

Please sign in to comment.