From edc2b2672faa8f8fe99b9de06d1e3b631f0cf3ef Mon Sep 17 00:00:00 2001 From: C-3PO Date: Sun, 8 Jul 2018 23:46:01 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=20Remove=20debugging=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ssn/getPatch.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ssn/getPatch.ts b/src/ssn/getPatch.ts index 1158798..a681d22 100644 --- a/src/ssn/getPatch.ts +++ b/src/ssn/getPatch.ts @@ -11,7 +11,6 @@ import verifyPatch from './verify/verifyPatch'; export default async function getPatch(product: Product, from: number, to: number) { const solidpkg = await getSolidpkg(product, from, to); - console.debug(solidpkg.files); function createUrlObject({ name, length }: {name: string, length: number}) { return { host: 'cdn-patch.swtor.com', path: `/patch/${product}/${product}_${from}to${to}/${name}`, size: length }; @@ -24,7 +23,6 @@ export default async function getPatch(product: Product, from: number, to: numbe //we can parse the file entries as soon as the .zip file is downloaded const fileEntries = readSsnFile(await zipFile); - console.debug(fileEntries); //Verify file entries verifyPatch(fileEntries, product, from);