Skip to content

Commit

Permalink
chore: requestUri 로그 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjin8678 committed Sep 3, 2023
1 parent 0caa1dc commit 24bab19
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ private HttpRequest createHttpRequest(InputStream inputStream) throws IOExceptio
}

private RequestUri getRequestUri(BufferedReader bufferedReader) throws IOException {
String requestUri = bufferedReader.readLine();
log.info("requestUri: {}", requestUri);
return RequestUri.from(requestUri);
return RequestUri.from(bufferedReader.readLine());
}

private HttpHeaders getHttpHeaders(BufferedReader bufferedReader) throws IOException {
Expand Down

0 comments on commit 24bab19

Please sign in to comment.