From a2d62fbb1b85e58ee165a88a1a18ca1741e33d92 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Wed, 13 May 2020 11:19:40 +0100 Subject: [PATCH] spurious logging --- syncapi/routing/messages.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/syncapi/routing/messages.go b/syncapi/routing/messages.go index 4e57ef2bb..72c306d4f 100644 --- a/syncapi/routing/messages.go +++ b/syncapi/routing/messages.go @@ -191,14 +191,10 @@ func (r *messagesReq) retrieveEvents() ( var streamEvents []types.StreamEvent if r.fromStream != nil { toStream := r.to.StreamToken() - util.GetLogger(r.ctx).Infof("quack fromStream positions %v", r.fromStream.Positions) - util.GetLogger(r.ctx).Infof("quack toStream positions %v", toStream.Positions) streamEvents, err = r.db.GetEventsInStreamingRange( r.ctx, r.fromStream, &toStream, r.roomID, r.limit, r.backwardOrdering, ) } else { - util.GetLogger(r.ctx).Infof("quack from positions %v", r.from.Positions) - util.GetLogger(r.ctx).Infof("quack to positions %v", r.to.Positions) streamEvents, err = r.db.GetEventsInTopologicalRange( r.ctx, r.from, r.to, r.roomID, r.limit, r.backwardOrdering, )