Skip to content

Commit 57ed911

Browse files
committed
updating and adding commented out console.log debug stmts
1 parent 0eeb088 commit 57ed911

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

functions/create_exclusion.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ async function getDedupedIssues(
195195
return queryError;
196196
}
197197
// Return the full issue data NOTE: do NOT JSON.stringify otherwise it'll overescape things
198+
//console.log("return queryResult from getDedupedIssues: ", JSON.stringify(queryResult));
198199
return queryResult;
199200
}
200201

@@ -402,6 +403,7 @@ export default SlackFunction(
402403
parsedStringArray.push(await JSON.parse(resultString)); //.parse undoes overescaping caused by .stringify
403404
}
404405
}
406+
//console.log(parsedStringArray.toString());
405407
return { outputs: { output: parsedStringArray.toString() } };
406408
},
407409
);

import_map.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"imports": {
3-
"deno-slack-sdk/": "https://deno.land/x/deno_slack_sdk@2.11.0/",
4-
"deno-slack-api/": "https://deno.land/x/deno_slack_api@2.4.0/"
3+
"deno-slack-sdk/": "https://deno.land/x/deno_slack_sdk@2.14.0/",
4+
"deno-slack-api/": "https://deno.land/x/deno_slack_api@2.7.0/"
55
}
66
}

0 commit comments

Comments
 (0)