Skip to content

Commit

Permalink
Refactor CopilotActionUtil logger.debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Sep 8, 2024
1 parent c57fb02 commit bc794f3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Copilot/Utils/CopilotAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,11 @@ export default class CopilotActionUtil {

logger.debug(
"Action type priorities: " +
actionTypePriorities.map((actionTypePriority) => {
return actionTypePriority.actionType;
}),
actionTypePriorities.map(
(actionTypePriority: CopilotActionTypePriority) => {
return actionTypePriority.actionType;
},
),
);

for (const actionTypePriority of actionTypePriorities) {
Expand Down

0 comments on commit bc794f3

Please sign in to comment.