@aresdefencelabs/wasm-http-runtime 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/abi.js +1 -0
- package/package.json +1 -1
package/dist/abi.js
CHANGED
|
@@ -115,6 +115,7 @@ export function createAresAbiImports(state) {
|
|
|
115
115
|
headers: outbound.headers,
|
|
116
116
|
body: outbound.body ?? undefined
|
|
117
117
|
});
|
|
118
|
+
console.log("[AresWasm] abi_http_fetch_blocking fetch completed, status =", response.status);
|
|
118
119
|
const bodyText = await response.text();
|
|
119
120
|
const bodyBytes = utf8ByteLength(bodyText);
|
|
120
121
|
if (bodyBytes > state.options.maxResponseBodyBytes) {
|
package/package.json
CHANGED