From 32479e06e144de94b165ba5097cd83c4a6e1729c Mon Sep 17 00:00:00 2001 From: Jake Bolam Date: Tue, 22 Jan 2019 08:47:09 -0500 Subject: [PATCH] feat: add logging around when messages are sent (#93) --- src/tasks/processIssueComment/CommentReply/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tasks/processIssueComment/CommentReply/index.js b/src/tasks/processIssueComment/CommentReply/index.js index 7c0473eb..2b30f096 100644 --- a/src/tasks/processIssueComment/CommentReply/index.js +++ b/src/tasks/processIssueComment/CommentReply/index.js @@ -27,6 +27,7 @@ class CommentReply { this.sent = true const fromUser = this.replyingToWho() const body = `@${fromUser} ${this.message}` + this.context.log.info(`Sending comment: ${body}`) const issueComment = this.context.issue({ body }) return this.context.github.issues.createComment(issueComment) }