Этот коммит содержится в:
Ben Schumacher
2023-11-01 12:57:13 +01:00
коммит произвёл GitHub
родитель 73fba481ed
Коммит 274adbf077
6 изменённых файлов: 12 добавлений и 8 удалений

Просмотреть файл

@@ -428,7 +428,7 @@ func (scs *Service) sendUserSyncData(sd *syncData) error {
scs.server.Log().Log(mlog.LvlSharedChannelServiceError, "Response indicates error for user(s) sync",
mlog.String("channel_id", sd.task.channelID),
mlog.String("remote_id", sd.rc.RemoteId),
mlog.Any("users", syncResp.UserErrors),
mlog.Array("users", syncResp.UserErrors),
)
}
})
@@ -460,7 +460,7 @@ func (scs *Service) sendPostSyncData(sd *syncData) error {
scs.server.Log().Log(mlog.LvlSharedChannelServiceError, "Response indicates error for post(s) sync",
mlog.String("channel_id", sd.task.channelID),
mlog.String("remote_id", sd.rc.RemoteId),
mlog.Any("posts", syncResp.PostErrors),
mlog.Array("posts", syncResp.PostErrors),
)
for _, postID := range syncResp.PostErrors {
@@ -481,7 +481,7 @@ func (scs *Service) sendReactionSyncData(sd *syncData) error {
scs.server.Log().Log(mlog.LvlSharedChannelServiceError, "Response indicates error for reactions(s) sync",
mlog.String("channel_id", sd.task.channelID),
mlog.String("remote_id", sd.rc.RemoteId),
mlog.Any("reaction_posts", syncResp.ReactionErrors),
mlog.Array("reaction_posts", syncResp.ReactionErrors),
)
}
})