Skip to content

Commit

Permalink
updating and adding commented out console.log debug stmts
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronhmiller committed Jul 13, 2024
1 parent 0eeb088 commit 57ed911
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions functions/create_exclusion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ async function getDedupedIssues(
return queryError;
}
// Return the full issue data NOTE: do NOT JSON.stringify otherwise it'll overescape things
//console.log("return queryResult from getDedupedIssues: ", JSON.stringify(queryResult));
return queryResult;
}

Expand Down Expand Up @@ -402,6 +403,7 @@ export default SlackFunction(
parsedStringArray.push(await JSON.parse(resultString)); //.parse undoes overescaping caused by .stringify
}
}
//console.log(parsedStringArray.toString());
return { outputs: { output: parsedStringArray.toString() } };
},
);
4 changes: 2 additions & 2 deletions import_map.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"deno-slack-sdk/": "https://deno.land/x/deno_slack_sdk@2.11.0/",
"deno-slack-api/": "https://deno.land/x/deno_slack_api@2.4.0/"
"deno-slack-sdk/": "https://deno.land/x/deno_slack_sdk@2.14.0/",
"deno-slack-api/": "https://deno.land/x/deno_slack_api@2.7.0/"
}
}

0 comments on commit 57ed911

Please sign in to comment.