Skip to content

Commit

Permalink
removes console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
GiladSchneider committed Oct 22, 2024
1 parent 30ec3b9 commit 8c95940
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ export const index = async (input: ZambdaInput): Promise<APIGatewayProxyResult>

if (!zapehrToken) {
console.log('getting token');
console.log('location 1');
zapehrToken = await getAccessToken(secrets, 'regular');
} else {
console.log('already have token');
Expand Down Expand Up @@ -214,7 +213,6 @@ export const index = async (input: ZambdaInput): Promise<APIGatewayProxyResult>

console.log('Send cancel message request');
if (!zapehrMessagingToken) {
console.log('location 2');
zapehrMessagingToken = await getAccessToken(secrets, 'messaging');
}
const WEBSITE_URL = getSecret(SecretsKeys.WEBSITE_URL, secrets);
Expand Down

0 comments on commit 8c95940

Please sign in to comment.