1
0
Fork 0

fix: Replace undefined log with console

pull/1/head
Ambrose Chua 2021-09-10 00:42:00 +08:00
parent e9e91764c0
commit a4faf69f29
1 changed files with 1 additions and 1 deletions

View File

@ -15,5 +15,5 @@ async function main(file) {
}
main(process.argv[2]).catch((error) => {
log.error(error);
console.error(error);
});