Skip to content

Commit

Permalink
fix: warn instead of error on missing user
Browse files Browse the repository at this point in the history
  • Loading branch information
rutmanz committed Nov 8, 2023
1 parent 892be39 commit 0a136c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/certs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export async function celebrateMembers(client: WebClient) {
certs[member.name] = member.certs
const user = slackMembers?.find((slack_member) => slack_member.real_name == member.name)
if (user == null) {
console.error(`Could not find user ${member.name}`)
console.warn(`Could not find user ${member.name}`)
return
}

Expand Down

0 comments on commit 0a136c8

Please sign in to comment.