feat: remove unecessary logging

This commit is contained in:
Artur
2025-01-15 17:30:08 -03:00
parent 7f32bd57d7
commit 8965eb0e3a
2 changed files with 0 additions and 3 deletions

View File

@@ -38,7 +38,6 @@ export async function refreshToken(token: JWT): Promise<JWT> {
refreshToken: newToken.refresh_token,
}
} catch (error) {
console.log('not refreshing access token, error', error)
return { ...token, error: 'RefreshAccessTokenError' }
}
}

View File

@@ -16,8 +16,6 @@ if (!globalForWorker.hasInitializedWorkers)
const userIds = pgAccountConnections.map((connection) => connection.userId)
console.log('querying...')
const usersActiveMembershipDonations = await prisma.donation.groupBy({
by: ['userId'],
where: {