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);