diff --git a/types/src/oauth/client/access_token.ts b/types/src/oauth/client/access_token.ts index e88f310e39d0..4a8a1e353193 100644 --- a/types/src/oauth/client/access_token.ts +++ b/types/src/oauth/client/access_token.ts @@ -40,23 +40,8 @@ export async function getOAuthConnectionAccessToken({ const cached = CACHE.get(connectionId); if (cached && cached.local_expiry > Date.now()) { - logger.info( - { - provider, - connectionId, - }, - "Access token cache hit" - ); return new Ok(cached); } - logger.info( - { - cached: !!cached, - provider, - connectionId, - }, - "Access token cache miss" - ); const res = await new OAuthAPI(config, logger).getAccessToken({ provider,