From 3538c504793f3cc689285c8087a83a41ed05479b Mon Sep 17 00:00:00 2001 From: Dragan Filipovic Date: Mon, 2 Jan 2023 18:05:04 +0100 Subject: [PATCH] find error --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index ea34b2a..4ca66a5 100644 --- a/src/index.js +++ b/src/index.js @@ -39,9 +39,9 @@ const run = async () => { run() .then((data) => { - console.log('DONE', data); + console.log('[DONE]', data); }) .catch((error) => { - console.error('ERROR', error.message); + console.error('[ERROR]', error.message); process.exit(1); });