From 3666900f1307cd74092847cf60df67c9b935112b Mon Sep 17 00:00:00 2001 From: Danny Coates Date: Fri, 1 Mar 2019 16:26:27 -0800 Subject: [PATCH] removed errant console.log --- app/utils.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/utils.js b/app/utils.js index 49c6f7b4..3d48f8ac 100644 --- a/app/utils.js +++ b/app/utils.js @@ -64,7 +64,6 @@ function bytes(num) { const exponent = Math.min(Math.floor(Math.log10(num) / 3), UNITS.length - 1); const n = Number(num / Math.pow(1024, exponent)); const decimalDigits = Math.floor(n) === n ? 0 : 1; - console.log(n, decimalDigits); let nStr = n.toFixed(decimalDigits); if (LOCALIZE_NUMBERS) { try {