From 73fe33286b393834011f82177616c9b54693d7f6 Mon Sep 17 00:00:00 2001 From: ChrisChrisChris Date: Wed, 18 Oct 2023 15:02:22 -0400 Subject: [PATCH] Add debug line to investigate test failure --- libs/blocks/caas-config/caas-config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/blocks/caas-config/caas-config.js b/libs/blocks/caas-config/caas-config.js index d59fece7b7e..098d0fe6426 100644 --- a/libs/blocks/caas-config/caas-config.js +++ b/libs/blocks/caas-config/caas-config.js @@ -775,9 +775,11 @@ const getEncodedObject = async (obj, replacer = null) => { const b64encode = (buf) => btoa(String.fromCharCode(...new Uint8Array(buf))); + console.log(JSON.stringify(obj, fgKeyReplacer)); const stream = objToStream(obj); const compressedResponse = await compressStream(stream); const buffer = await responseToBuffer(compressedResponse); + console.log(new Int32Array(buffer)); return b64encode(buffer); };