From 3352eb35419c1bc82f36c84388d007e0ec5db461 Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Mon, 13 Nov 2023 11:23:31 +0900 Subject: [PATCH] =?UTF-8?q?request=20url=20=EB=A1=9C=EA=B7=B8=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/cokr/xit/foundation/web/WebClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cokr/xit/foundation/web/WebClient.java b/src/main/java/cokr/xit/foundation/web/WebClient.java index e6aca16..21b33fe 100644 --- a/src/main/java/cokr/xit/foundation/web/WebClient.java +++ b/src/main/java/cokr/xit/foundation/web/WebClient.java @@ -187,7 +187,7 @@ public class WebClient { } private HttpResponse handleRequest(boolean async, HttpRequest hreq, HttpResponse.BodyHandler bodyHandler, Consumer> respHandler) throws Exception { - Log.get(getClass()).debug("Sending request"); + Log.get(getClass()).debug("Sending request:\n{} {}", hreq.method(), hreq.uri()); if (!async) { HttpResponse resp = client().send(hreq, bodyHandler); Log.get(getClass()).debug("Received response");