Remove unnecessary logging

This commit is contained in:
Neil Alexander 2022-03-09 11:48:41 +00:00
parent f831abac55
commit 74ad558e82
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -125,7 +125,6 @@ func OnIncomingMessagesRequest(
logrus.WithError(err).Errorf("Failed to get topological position for streaming token %v", streamToken)
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)
return jsonerror.InternalServerError()
}
logrus.Infof("XXX: 'to' mapping %v to %v", toQuery, to)
}
}
} else {
@ -188,8 +186,6 @@ func OnIncomingMessagesRequest(
device: device,
}
logrus.Infof("XXX: Retrieving events %v to %v", from, to)
clientEvents, start, end, err := mReq.retrieveEvents()
if err != nil {
util.GetLogger(req.Context()).WithError(err).Error("mreq.retrieveEvents failed")