🗑 Remove debugging output

This commit is contained in:
C-3PO 2018-07-08 23:46:01 +02:00
parent 0f224523d4
commit edc2b2672f
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

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