Remove debug output

This commit is contained in:
N-Pex 2025-08-20 15:15:40 +02:00
parent e9accdebf1
commit 881270f149

View file

@ -417,7 +417,6 @@ export const createUploadBatch = (manager: AttachmentManager | null, room: Room
const maxSizeUploads = manager?.maxSizeUploads ?? 0;
const txnId = utils.randomPass();
console.error("Created txnId", txnId);
const sendingStatus: Ref<AttachmentSendStatus> = ref("initial");
const sendingRootEventId: Ref<string | undefined> = ref(undefined);
@ -552,7 +551,6 @@ export const createUploadBatch = (manager: AttachmentManager | null, room: Room
}, 0);
const onLocalEchoUpdated = (event: KeanuEvent) => {
console.error("Local echo updated", event.getTxnId(), event.uploadBatch);
if (!event.uploadBatch && event.getTxnId() === txnId) {
event.uploadBatch = {
sendingStatus,