From c80689d8eae5e68610b53ddfbe3ce56a27f6a31f Mon Sep 17 00:00:00 2001 From: pearl-truss Date: Thu, 1 Feb 2024 13:57:12 -0500 Subject: [PATCH] remove temp logging of allowed ip addresses --- services/app-api/src/authn/thirdPartyAuthn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/app-api/src/authn/thirdPartyAuthn.ts b/services/app-api/src/authn/thirdPartyAuthn.ts index 25b987f210..d46b1e467d 100644 --- a/services/app-api/src/authn/thirdPartyAuthn.ts +++ b/services/app-api/src/authn/thirdPartyAuthn.ts @@ -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) }