diff --git a/public/js/logs.js b/public/js/logs.js index 374c46e..2e0a92c 100644 --- a/public/js/logs.js +++ b/public/js/logs.js @@ -20,7 +20,6 @@ if (!res.ok) throw new Error(await res.text()); const logs = await res.json(); - console.log(logs); if (logs.length === 0) { tbody.innerHTML = 'No logs found'; diff --git a/src/routes/logs.js b/src/routes/logs.js index b4076da..c6d205f 100644 --- a/src/routes/logs.js +++ b/src/routes/logs.js @@ -102,7 +102,6 @@ ...meta, }; }); - console.log(logs.length); res.json(logs); } catch {