From 5ab215a601f60483cda7446b80bc67a8de775bfd Mon Sep 17 00:00:00 2001 From: koneko <67551503+koneko@users.noreply.github.com> Date: Thu, 14 Aug 2025 21:10:50 +0200 Subject: [PATCH] sss --- log.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log.js b/log.js index e1c6109..af937e7 100644 --- a/log.js +++ b/log.js @@ -3,7 +3,7 @@ function log(level, message, ...args) { const now = new Date().toISOString(); const levelLabel = `[${level.toUpperCase()}]`.padEnd(8); - log.info(`${now} ${levelLabel} ${message}`, ...args); + console.log(`${now} ${levelLabel} ${message}`, ...args); } module.exports = {