From 60e9d47b1d9846e9ba2cfd9b3135661ed16418c1 Mon Sep 17 00:00:00 2001 From: Blayne Chard Date: Fri, 15 Dec 2023 15:23:58 +1300 Subject: [PATCH] fix(cli): remove excess console.log --- packages/cli/src/commands/info.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/cli/src/commands/info.ts b/packages/cli/src/commands/info.ts index 4e990e9d..b0fd7c76 100644 --- a/packages/cli/src/commands/info.ts +++ b/packages/cli/src/commands/info.ts @@ -190,7 +190,6 @@ export const tiffTileStats: CliTableInfo = { }; for (const st of sizes) { if (st === 0) stats.empty++; - console.log(st, stats); stats.size += st; } if (stats.size === 0) return `${c.red('empty')} x${stats.empty}`;