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]); }