Found this console.log that had slipped into the production code for mixFetch (TypeScript SDK):
|
console.log({ workerResponse }); |
Because mixFetch is a library, it shouldn't be logging to the console, but instead logging to some log utility configured by the user. This way the user can opt-in/out of logging.
Found this
console.logthat had slipped into the production code for mixFetch (TypeScript SDK):nym/sdk/typescript/packages/mix-fetch/src/create-mix-fetch.ts
Line 56 in d3648f1
Because mixFetch is a library, it shouldn't be logging to the console, but instead logging to some log utility configured by the user. This way the user can opt-in/out of logging.