From ff75cbd81d7a440eb498c62e47d6886eab00bfe9 Mon Sep 17 00:00:00 2001 From: Jason Song Date: Fri, 6 Jan 2023 13:47:45 +0800 Subject: [PATCH] chore: fix log --- services/actions/notifier_helper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/actions/notifier_helper.go b/services/actions/notifier_helper.go index c2a6d402c8..012e95fde2 100644 --- a/services/actions/notifier_helper.go +++ b/services/actions/notifier_helper.go @@ -96,7 +96,7 @@ func (input *notifyInput) WithPullRequest(pr *issues_model.PullRequest) *notifyI func (input *notifyInput) Notify(ctx context.Context) { if err := notify(ctx, input); err != nil { - log.Error("%s: %v", getMethod(ctx), err) + log.Error("an error occurred while executing the %s actions method: %v", getMethod(ctx), err) } }