Remove very noisy log entry (#26660)

This commit is contained in:
Devin Binnie 2024-04-04 00:15:16 -04:00 committed by GitHub
parent b0feeb5ec7
commit 087c993bed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -777,12 +777,6 @@ func (a *App) publishWebsocketEventForPermalinkPost(c request.CTX, post *model.P
if val, ok := post.GetProp(model.PostPropsPreviewedPost).(string); ok { if val, ok := post.GetProp(model.PostPropsPreviewedPost).(string); ok {
previewedPostID = val previewedPostID = val
} else { } else {
a.NotificationsLog().Warn("Failed to get permalink post prop",
mlog.String("type", model.TypeWebsocket),
mlog.String("post_id", post.Id),
mlog.String("status", model.StatusServerError),
mlog.String("reason", model.ReasonServerError),
)
return false, nil return false, nil
} }