Skip to content

Commit

Permalink
add more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Oct 15, 2024
1 parent 9a4d9bc commit 53ac108
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webapp/src/app/core/security/keycloak.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ export class KeycloakService {
}

async init() {
console.log('KeycloakService.init silentCheckSsoRedirectUri:', window.location.origin + '/silent-check-sso.html');
const authenticated = await this.keycloak.init({
onLoad: 'check-sso',
silentCheckSsoRedirectUri: window.location.origin + '/silent-check-sso.html'
});
console.log('KeycloakService.init silentCheckSsoRedirectUri:', window.location.origin + '/silent-check-sso.html');
console.log('KeycloakService.init authenticated:', authenticated);

if (!authenticated) {
return authenticated;
Expand Down

0 comments on commit 53ac108

Please sign in to comment.