From 49f74bf48c24a45ca519ebb286ddff11b38fef43 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Wed, 28 Oct 2020 18:40:22 +0100 Subject: [PATCH] ves: Fix missing grouping --- ves.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ves.js b/ves.js index cd24e36..37e1637 100644 --- a/ves.js +++ b/ves.js @@ -382,6 +382,7 @@ async function work(config, ff, videos, encoders) { console.time(video_key); let video = videos.get(video_key); for (let cache_key of video.caches.keys()) { + console.group(cache_key); console.time(cache_key); let cache = video.caches.get(cache_key); @@ -477,6 +478,7 @@ async function work(config, ff, videos, encoders) { console.groupEnd(); console.timeEnd(LABEL); } + console.groupEnd(cache_key); console.timeEnd(cache_key); } console.timeEnd(video_key);