better logging

This commit is contained in:
Bruno Windels 2021-04-08 18:39:52 +02:00
parent 9e697c6cbe
commit bdc8451c4a
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ export class SendQueue {
}
if (idx !== -1) {
const pendingEvent = this._pendingEvents.get(idx);
parentLog.log({l: "removeRemoteEcho", id: pendingEvent.remoteId});
parentLog.log({l: "removeRemoteEcho", queueIndex: pendingEvent.queueIndex, remoteId: event.event_id, txnId});
txn.pendingEvents.remove(pendingEvent.roomId, pendingEvent.queueIndex);
removed.push(pendingEvent);
}