From b87236a435e9c2ad8808c944458bebe5275a478e Mon Sep 17 00:00:00 2001 From: C-3PO Date: Sat, 23 Jun 2018 23:32:17 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Improve=20debug=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ssn/getPatch.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ssn/getPatch.ts b/src/ssn/getPatch.ts index c05ef4a..32c9ccb 100644 --- a/src/ssn/getPatch.ts +++ b/src/ssn/getPatch.ts @@ -7,6 +7,7 @@ import readSsnFile from './readSsnFile'; export default async function getPatch(product: Product, from: number, to: number) { const solidPkg = await getSolidpkg(product, from, to); + console.log(solidPkg.files); const bufferArray = await Promise.all(solidPkg.files.map((file) => getUrlContents({ host: 'cdn-patch.swtor.com', path: `/patch/${product}/${product}_${from}to${to}/${file.name}` }))); const zipFile = bufferArray[bufferArray.length - 1];