Skip to content

Commit

Permalink
fix: Added log for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
yogeshayanworks committed Aug 1, 2024
1 parent c81cef5 commit b0723e2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/api-gateway/src/connection/connection.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,8 @@ export class ConnectionController {
@Res() res: Response
): Promise<Response> {
connectionDto.type = 'Connection';
this.logger.log(`connectionDto ::: ${JSON.stringify(connectionDto)} ${orgId}`);

this.logger.debug(`connectionDto ::: ${JSON.stringify(connectionDto)} ${orgId}`);

const connectionData = await this.connectionService.getConnectionWebhook(connectionDto, orgId).catch(error => {
Expand Down

0 comments on commit b0723e2

Please sign in to comment.