diff --git a/webapp/src/octoListener.ts b/webapp/src/octoListener.ts index 175a2d799..898eb03b4 100644 --- a/webapp/src/octoListener.ts +++ b/webapp/src/octoListener.ts @@ -108,7 +108,6 @@ class OctoListener { switch (message.action) { case 'UPDATE_BLOCK': - Utils.log(`OctoListener update block: ${message.block?.id}`) this.queueUpdateNotification(message.block!) break default: @@ -207,6 +206,9 @@ class OctoListener { } private flushUpdateNotifications() { + for (const block of this.updatedBlocks) { + Utils.log(`OctoListener flush update block: ${block.id}`) + } this.onChange?.(this.updatedBlocks) this.updatedBlocks = [] }