From a4faf69f29aae48da5ec111d63f2155c67661d98 Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Fri, 10 Sep 2021 00:42:00 +0800 Subject: [PATCH] fix: Replace undefined log with console --- fixtures/index-node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixtures/index-node.js b/fixtures/index-node.js index 5b503e1..6a11665 100644 --- a/fixtures/index-node.js +++ b/fixtures/index-node.js @@ -15,5 +15,5 @@ async function main(file) { } main(process.argv[2]).catch((error) => { - log.error(error); + console.error(error); });