We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d593385 commit 46b6584Copy full SHA for 46b6584
lib/index.ts
@@ -391,8 +391,8 @@ export default class LNC {
391
onError?: (res: Error) => void
392
) {
393
const method = `${methodDescriptor.service.serviceName}.${methodDescriptor.methodName}`;
394
- log.debug(`${method} request`, request.toObject());
395
- const hackedReq = this.hackRequest(request.toObject());
+ log.debug(`${method} request`, request);
+ const hackedReq = this.hackRequest(request);
396
log.debug(`${method} hacked request`, hackedReq);
397
const reqJSON = JSON.stringify(hackedReq);
398
this.wasmNamespace.wasmClientInvokeRPC(
0 commit comments