Skip to content

Commit

Permalink
Add service done and init console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
matedo1 committed Nov 20, 2024
1 parent 3822b41 commit e06bec1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/services/keycloakService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class KeycloakService {
});

return new Promise((resolve, reject) => {
console.log('G1: keycloakAuth init');
this.keycloakAuth
.init({ onLoad: 'check-sso' })
.then(() => {
Expand Down
2 changes: 2 additions & 0 deletions src/utils/legacyUrlRedirector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ export const legacyUrlRedirector = () => {
console.log(`Redirecting to new URL: ${newPath}`);
window.location.href = URL_BASE_PATH + newPath;
}

console.log('G1: legacyUrlRedirector done');
};

0 comments on commit e06bec1

Please sign in to comment.