mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-01 03:03:10 -06:00
Remove unnecessary logging
This commit is contained in:
parent
f831abac55
commit
74ad558e82
|
|
@ -125,7 +125,6 @@ func OnIncomingMessagesRequest(
|
||||||
logrus.WithError(err).Errorf("Failed to get topological position for streaming token %v", streamToken)
|
logrus.WithError(err).Errorf("Failed to get topological position for streaming token %v", streamToken)
|
||||||
return jsonerror.InternalServerError()
|
return jsonerror.InternalServerError()
|
||||||
}
|
}
|
||||||
logrus.Infof("XXX: 'from' mapping %v to %v", fromQuery, from)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -148,7 +147,6 @@ func OnIncomingMessagesRequest(
|
||||||
logrus.WithError(err).Errorf("Failed to get topological position for streaming token %v", streamToken)
|
logrus.WithError(err).Errorf("Failed to get topological position for streaming token %v", streamToken)
|
||||||
return jsonerror.InternalServerError()
|
return jsonerror.InternalServerError()
|
||||||
}
|
}
|
||||||
logrus.Infof("XXX: 'to' mapping %v to %v", toQuery, to)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -188,8 +186,6 @@ func OnIncomingMessagesRequest(
|
||||||
device: device,
|
device: device,
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Infof("XXX: Retrieving events %v to %v", from, to)
|
|
||||||
|
|
||||||
clientEvents, start, end, err := mReq.retrieveEvents()
|
clientEvents, start, end, err := mReq.retrieveEvents()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
util.GetLogger(req.Context()).WithError(err).Error("mreq.retrieveEvents failed")
|
util.GetLogger(req.Context()).WithError(err).Error("mreq.retrieveEvents failed")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue