We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4348814 commit 78475acCopy full SHA for 78475ac
infrastructure/environments/test/locals.tf
@@ -28,7 +28,7 @@ locals {
28
application_environment_variables = {
29
SSM_PREFIX = "/${local.prefix}/"
30
31
- PINO_LOG_LEVEL = "info"
+ PINO_LOG_LEVEL = "debug"
32
DEPLOY_ENVIRONMENT = local.environment
33
PROFILE_PERFORMANCE = "true"
34
src/utils/auth/apim/fetch-apim-access-token.ts
@@ -34,6 +34,7 @@ const fetchAPIMAccessToken = async (idToken: IdToken): Promise<ApimTokenResponse
throw new ApimHttpError(`Error getting APIM token`);
35
} else {
36
log.error({ error }, `Error generating APIM token request`);
37
+ log.error(error, `Error generating APIM token request 2`);
38
throw new ApimAuthError(`Error getting APIM token`);
39
}
40
0 commit comments