From e2eea38644ef55e9df17dc2da9e08a9a08817a01 Mon Sep 17 00:00:00 2001 From: j Date: Sun, 31 Mar 2024 00:21:04 -0400 Subject: [PATCH] addtl consoling --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 4deeea4..e61f44f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,7 +22,7 @@ async function startApplication() { // Initialize and start workflow try { await CommentProcessor.processComments(); - console.log('Workflow executed successfully.'); + console.log(`${new Date()} Workflow executed successfully.`); } catch (error) { console.error('An error occurred during workflow execution:', error); } @@ -31,7 +31,7 @@ async function startApplication() { setInterval(async () => { try { await CommentProcessor.processComments(); - console.log('Workflow executed successfully.'); + console.log(`${new Date()} Workflow executed successfully.`); } catch (error) { console.error('An error occurred during workflow execution:', error); }