🗑 Remove debugging output
This commit is contained in:
parent
0f224523d4
commit
edc2b2672f
1 changed files with 0 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue