From b5d1d37d5e06d4419098ab96310bb08d43a76c75 Mon Sep 17 00:00:00 2001 From: joseph le Date: Tue, 12 Sep 2023 16:19:00 +0700 Subject: [PATCH] add component ShowLog --- manage-view/src/components/ShowLog/ShowLog.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/manage-view/src/components/ShowLog/ShowLog.jsx b/manage-view/src/components/ShowLog/ShowLog.jsx index 6e26b92..1a0dcf1 100644 --- a/manage-view/src/components/ShowLog/ShowLog.jsx +++ b/manage-view/src/components/ShowLog/ShowLog.jsx @@ -12,6 +12,7 @@ const ShowLog = () => { let tempContent = ""; const res = await axios.get(getLog + "/" + name); setLog(res.data); + console.log(res.data) } catch (error) { console.log(error); }