From dbf25c6d5c3a519daf2cc9182b294c5c99f8c049 Mon Sep 17 00:00:00 2001 From: j Date: Sun, 31 Mar 2024 00:18:28 -0400 Subject: [PATCH] addtl comment info --- src/workflows/WorkflowOrchestrator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workflows/WorkflowOrchestrator.ts b/src/workflows/WorkflowOrchestrator.ts index cda7d15..a5adad4 100644 --- a/src/workflows/WorkflowOrchestrator.ts +++ b/src/workflows/WorkflowOrchestrator.ts @@ -32,7 +32,7 @@ class WorkflowOrchestrator { async processComment(comment: Comment) { const redditUsers = CommentParser.extractUsernames(comment); if (redditUsers.length === 0) return; - console.log('found:', redditUsers); + console.log(`${comment.permalink} found:`, redditUsers); await this.postCommentAndNotify(comment, redditUsers[0]); }