From 1bddd6a7401d2de30ee8b1e17bef5992c0f8fe4e Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Mon, 31 Jul 2023 15:12:09 +0900 Subject: [PATCH] =?UTF-8?q?API=E3=83=AC=E3=82=B9=E3=83=9D=E3=83=B3?= =?UTF-8?q?=E3=82=B9=E3=81=AE=E3=83=AD=E3=82=B0=E5=87=BA=E5=8A=9B=E3=81=AB?= =?UTF-8?q?=E6=99=82=E5=88=BB=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/index.ts b/src/api/index.ts index f8559f0..a6458a5 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -178,7 +178,7 @@ export const request = async ({ searchUrl += "?" + data.toString(); } response = await axios.get(searchUrl); - console.log("RESPONSE", searchUrl, method, response?.data); + console.log(new Date(), "RESPONSE", searchUrl, method, response?.data); } else if (method === HttpMethod.POST) { response = await axios.post(url, data);