Skip to content

Commit

Permalink
DOP-4451 fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed May 7, 2024
1 parent 2576176 commit 3c398d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/controllers/v1/slack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const DisplayRepoOptions = async (event: APIGatewayEvent): Promise<APIGat
const entitledBranches = await buildEntitledGroupsList(entitlement, repoBranchesRepository);
console.log('built branches');
const resp = await slackConnector.displayRepoOptions(entitledBranches, key_val['trigger_id'], isAdmin);
console.log(JSON.stringify(resp));
console.log(resp);
if (resp?.status == 200 && resp?.data) {
return {
statusCode: 200,
Expand Down

0 comments on commit 3c398d3

Please sign in to comment.