Skip to content

Commit

Permalink
remove temp logging of allowed ip addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
pearl-truss committed Feb 1, 2024
1 parent dd3f63d commit c80689d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/app-api/src/authn/thirdPartyAuthn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export async function userFromThirdPartyAuthorizer(
const ipAddressIsValid = allowedIpAddresses.includes(ipAddress)
if (!ipAddressIsValid) {
const errMsg = new Error(
`IP address: ${ipAddress} is not in the allowed list ${allowedIpAddresses}`
`IP address: ${ipAddress} is not in the allowed list`
)
return err(errMsg)
}
Expand Down

0 comments on commit c80689d

Please sign in to comment.