Tweak logging for federated room joins

This commit is contained in:
Neil Alexander 2022-10-06 10:07:13 +01:00
parent 9ba3103f88
commit e53dcb25a9
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -259,7 +259,7 @@ func (r *FederationInternalAPI) performJoinUsingServer(
if err != nil {
return fmt.Errorf("JoinedHostsFromEvents: failed to get joined hosts: %s", err)
}
logrus.WithField("hosts", joinedHosts).WithField("room", roomID).Info("Joined federated room with hosts")
logrus.WithField("room", roomID).Infof("Joined federated room with %d hosts", len(joinedHosts))
if _, err = r.db.UpdateRoom(context.Background(), roomID, joinedHosts, nil, true); err != nil {
return fmt.Errorf("UpdatedRoom: failed to update room with joined hosts: %s", err)
}