diff --git a/clientapi/producers/roomserver.go b/clientapi/producers/roomserver.go index 4985b91eb..391ea07bf 100644 --- a/clientapi/producers/roomserver.go +++ b/clientapi/producers/roomserver.go @@ -16,7 +16,6 @@ package producers import ( "context" - "fmt" "github.com/matrix-org/dendrite/roomserver/api" "github.com/matrix-org/gomatrixserverlib" @@ -64,11 +63,6 @@ func (c *RoomserverProducer) SendEventWithState( return err } - fmt.Println("OUTLIERS:") - for _, o := range outliers { - fmt.Println("*", o.EventID(), o.Type(), o.StateKey()) - } - var ires []api.InputRoomEvent for _, outlier := range outliers { ires = append(ires, api.InputRoomEvent{ diff --git a/clientapi/routing/joinroom.go b/clientapi/routing/joinroom.go index 4439bab58..06f98351c 100644 --- a/clientapi/routing/joinroom.go +++ b/clientapi/routing/joinroom.go @@ -370,14 +370,6 @@ func (r joinRoomReq) joinRoomUsingServer(roomID string, server gomatrixserverlib retries := map[string]bool{} retryCheck: - fmt.Println("STATE EVENTS:") - for _, e := range respSendJoin.StateEvents { - fmt.Println("*", e.EventID()) - } - fmt.Println("AUTH EVENTS:") - for _, e := range respSendJoin.AuthEvents { - fmt.Println("*", e.EventID()) - } if err = respSendJoin.Check(r.req.Context(), r.keyRing, event); err != nil { switch e := err.(type) { case gomatrixserverlib.MissingAuthEventError: