diff --git a/src/ssn/getPatch.ts b/src/ssn/getPatch.ts index 9bd187f..a2bc293 100644 --- a/src/ssn/getPatch.ts +++ b/src/ssn/getPatch.ts @@ -29,14 +29,14 @@ export default async function getPatch(product: Product, from: number, to: numbe //Extract newly added files fileEntries.filter((file) => file.diffType === SsnDiffType.NewFile).forEach(async (file) => { const fileContents = await extractFile(file, dvArray); - console.debug(fileContents); + console.debug(new Uint8Array(fileContents)); //TODO }); //Extract changed files fileEntries.filter((file) => file.diffType === SsnDiffType.Changed).forEach(async (file) => { const fileContents = await extractFile(file, dvArray); - console.debug(fileContents); + console.debug(new Uint8Array(fileContents)); //TODO });