Skip to content

Commit 987ac19

Browse files
committed
Add custom auth config provider and implement default idp processing.
1 parent 74e9143 commit 987ac19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/portal-options/auth-config-provider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ export class PMAuthConfigProvider implements AuthConfigService {
2020
try {
2121
return await this.envEuthConfigService.getAuthConfig(request);
2222
} catch {
23-
this.logger.log(
23+
this.logger.debug(
2424
'Failed to retrieve auth config from environment variables based on provided IDP.',
2525
);
2626
}
2727

28-
this.logger.log('Resolving auth config from default configuration.');
28+
this.logger.debug('Resolving auth config from default configuration.');
2929

3030
const oidc = await this.discoveryService.getOIDC('DEFAULT');
3131
const oauthServerUrl =

0 commit comments

Comments
 (0)