Skip to content

Commit

Permalink
Debug: Move log line up
Browse files Browse the repository at this point in the history
  • Loading branch information
0kl-usds committed Dec 6, 2024
1 parent 1c3ded5 commit ca1a2bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/auth/loginGov.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ async function generateStrategy() {
logger.info(JSON.stringify(openIdConfig))
logger.info(JSON.stringify(jose.JWK.asKey(secretKey, 'pem')));
const issuer = await Issuer.discover(openIdConfig.issuerDiscover)
logger.info(`OpenId Issuer set to ${issuer.issuer}`);
const key = await jose.JWK.asKey(secretKey, 'pem');
logger.info(`Key successfully read`);
logoutObject.issuer = issuer;
logger.info(`OpenId Issuer set to ${issuer.issuer}`);

const clientOptions: ClientMetadata = {
client_id: openIdConfig.clientId,
Expand Down

0 comments on commit ca1a2bf

Please sign in to comment.