From 20397d32e65453f65ae54643f4d1cabdd7b1a528 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 17 Oct 2024 19:11:22 -0600 Subject: [PATCH] More logging --- src/Video.web.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Video.web.tsx b/src/Video.web.tsx index 900dfaa9..fedc8e29 100644 --- a/src/Video.web.tsx +++ b/src/Video.web.tsx @@ -23,9 +23,11 @@ class ActionQueue { private async runNext() { if (this.isRunning || this.queue.length === 0) { + console.log("Refusing to run in runNext", this.queue.length, this.isRunning); return; } this.isRunning = true; + console.log("Running an action"); const action = this.queue.shift(); if (action) { try {