fix: ログ出力に日付追加

This commit is contained in:
Masaya Suzuki 2023-03-14 07:09:12 +09:00
parent a3af63daa8
commit 39cda1cac4
No known key found for this signature in database

View file

@ -2,7 +2,7 @@ import * as chalk from 'chalk';
export default function(msg: string) {
const now = new Date();
const date = `${zeroPad(now.getHours())}:${zeroPad(now.getMinutes())}:${zeroPad(now.getSeconds())}`;
const date = `${now.getFullYear()}-${zeroPad(now.getMonth() + 1)}-${zeroPad(now.getDate())} ${zeroPad(now.getHours())}:${zeroPad(now.getMinutes())}:${zeroPad(now.getSeconds())}`;
console.log(`${chalk.gray(date)} ${msg}`);
}