Skip to content
Snippets Groups Projects
Commit b3a3a20d authored by Jeremy White's avatar Jeremy White
Browse files

Move the queue length debug up to stream level 2.

It's a fair amount of noise, and not useful at level 1.
parent f29dcf43
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment