Skip to content

Commit

Permalink
fix: 로깅 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyma-s committed Sep 4, 2023
1 parent da74a18 commit 07b61d8
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@
import java.io.UncheckedIOException;
import java.util.HashMap;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class HttpRequest {

private static final Logger LOGGER = LoggerFactory.getLogger(HttpRequest.class);
private static final String APPLICATION_X_WWW_FORM_URLENCODED = "application/x-www-form-urlencoded";
private static final String JSESSION_ID = "JSESSIONID";

Expand Down Expand Up @@ -43,8 +40,6 @@ public static HttpRequest from(final BufferedReader bufferedReader) {
final HttpHeaders headers = HttpHeaders.from(bufferedReader);
final Map<String, String> body = parseBody(headers, bufferedReader);

LOGGER.info("method: {}, uri: {}, protocol: {}", method, uri, protocol);

return new HttpRequest(headers, HttpMethod.of(method), HttpRequestURI.from(uri), protocol, body);
} catch (IOException e) {
throw new UncheckedIOException(e);
Expand Down

0 comments on commit 07b61d8

Please sign in to comment.