Skip to content

Commit

Permalink
fix(cli): remove excess console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Dec 15, 2023
1 parent 3510f88 commit 60e9d47
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/cli/src/commands/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ export const tiffTileStats: CliTableInfo<TiffImage> = {
};
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}`;
Expand Down

0 comments on commit 60e9d47

Please sign in to comment.