From f578b194ac57257cadba6f32d0c32b971005e4e1 Mon Sep 17 00:00:00 2001 From: C-3PO Date: Fri, 22 Jun 2018 17:19:30 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Improve=20debug=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/installPatch.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/installPatch.ts b/src/installPatch.ts index bf758b3..34c4638 100644 --- a/src/installPatch.ts +++ b/src/installPatch.ts @@ -4,11 +4,11 @@ import getSolidpkg from './ssn/getSolidpkg'; (async () => { //----- PATCHMANIFEST ----- //.patchmanifest files contain a single XML file called "manifest.xml" - const patchmanifestXml = await getPatchmanifest('assets_swtor_de_de'); - console.log(patchmanifestXml); + //const patchmanifestXml = await getPatchmanifest('assets_swtor_de_de'); + //console.log(patchmanifestXml); //----- SOLIDPKG ----- //.solidpkg files contain a single Bencode file called "metafile.solid" const solidFile = await getSolidpkg('assets_swtor_de_de', -1, 0); - console.log(solidFile); + console.log(solidFile.files); })();