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);