sss
All checks were successful
Deploy bot / build-and-deploy (push) Successful in 3s

This commit is contained in:
2025-08-14 21:10:50 +02:00
parent 94886ea397
commit 5ab215a601

2
log.js
View File

@ -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 = {