From ab76283131e73891dd8a172cde1a9e896be1bb20 Mon Sep 17 00:00:00 2001 From: boufni95 Date: Fri, 14 Mar 2025 20:51:43 +0000 Subject: [PATCH] less logs --- src/services/storage/transactionsQueue.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/storage/transactionsQueue.ts b/src/services/storage/transactionsQueue.ts index 4a1d4ee8..e8275119 100644 --- a/src/services/storage/transactionsQueue.ts +++ b/src/services/storage/transactionsQueue.ts @@ -38,7 +38,7 @@ export default class { } } async Read(read: (tx: DataSource | EntityManager) => Promise) { - console.log("Read", this.activeReaders, this.pendingTx, this.writeRequested) + //console.log("Read", this.activeReaders, this.pendingTx, this.writeRequested) if (!this.writeRequested) { return this.executeRead(read) } @@ -71,7 +71,7 @@ export default class { } PushToQueue(op: TxOperation) { - console.log("PushToQueue", this.activeReaders, this.pendingTx, this.writeRequested) + //console.log("PushToQueue", this.activeReaders, this.pendingTx, this.writeRequested) this.writeRequested = true if (!this.pendingTx && this.activeReaders === 0) { return this.execQueueItem(op)