From f9cd87ae3a3fbc10af9e46ad768e60df9cb3fc17 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Thu, 19 Mar 2020 13:43:07 -0400 Subject: [PATCH] Log handle on GetProfilePageFromHandle err --- posts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts.go b/posts.go index 15176b7..82907ba 100644 --- a/posts.go +++ b/posts.go @@ -1180,7 +1180,7 @@ func (p *PublicPost) ActivityObject(app *App) *activitystreams.Object { for _, handle := range mentions { actorIRI, err := app.db.GetProfilePageFromHandle(app, handle) if err != nil { - log.Info("Couldn't find this user locally or remotely") + log.Info("Couldn't find user '%s' locally or remotely", handle) continue } mentionedUsers[handle] = actorIRI