From b3a3a20d152ed3522210fa9b7edbe4c73cde33e1 Mon Sep 17 00:00:00 2001 From: Jeremy White <jwhite@codeweavers.com> Date: Thu, 15 Dec 2016 10:42:41 -0600 Subject: [PATCH] Move the queue length debug up to stream level 2. It's a fair amount of noise, and not useful at level 1. --- display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.js b/display.js index 0646744..788fcc6 100644 --- a/display.js +++ b/display.js @@ -1185,7 +1185,7 @@ function video_handle_event_debug(e) if (STREAM_DEBUG > 1 && s.source_buffer) console.log(" source_buffer " + dump_source_buffer(s.source_buffer)); - if (STREAM_DEBUG > 0 || s.queue.length > 1) + if (STREAM_DEBUG > 1 || s.queue.length > 1) console.log(' queue len ' + s.queue.length + '; append_okay: ' + s.append_okay); } -- GitLab