1
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-04-08 17:05:45 +02:00

chore: fix log

This commit is contained in:
Jason Song 2023-01-06 13:47:45 +08:00
parent 9bd3ea49f4
commit ff75cbd81d
No known key found for this signature in database
GPG Key ID: 8402EEEE4511A8B5

@ -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)
}
}