From e4f94f937f341b489bda9bc3506a91841202b98e Mon Sep 17 00:00:00 2001 From: "rinkal.bhojani" Date: Mon, 2 Sep 2024 16:50:08 +0530 Subject: [PATCH] fix: added logs to debug parentThreadId --- apps/agent-service/src/agent-service.service.ts | 1 + apps/verification/src/verification.service.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/agent-service/src/agent-service.service.ts b/apps/agent-service/src/agent-service.service.ts index adf8752da..eccb79bd1 100644 --- a/apps/agent-service/src/agent-service.service.ts +++ b/apps/agent-service/src/agent-service.service.ts @@ -1398,6 +1398,7 @@ export class AgentServiceService { ): Promise { try { const getApiKey = await this.getOrgAgentApiKey(orgId); + this.logger.log(`sendOutOfBandProofRequest: payload: ${JSON.stringify(proofRequestPayload)}`); const sendProofRequest = await this.commonService .httpPost(url, proofRequestPayload, { headers: { authorization: getApiKey } }) .then(async (response) => response); diff --git a/apps/verification/src/verification.service.ts b/apps/verification/src/verification.service.ts index a0c9bbf5f..283cc409e 100644 --- a/apps/verification/src/verification.service.ts +++ b/apps/verification/src/verification.service.ts @@ -526,6 +526,7 @@ export class VerificationService { cmd: 'agent-send-out-of-band-proof-request' }; + this.logger.log(`_sendOutOfBandProofRequest: nats call payload: ${JSON.stringify(payload)}`); return await this.natsCall(pattern, payload); } catch (error) {