@osovitny/anatoly 3.19.43 → 3.19.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2074,19 +2074,19 @@ class AuthService extends ApiServiceBase {
2074
2074
  };
2075
2075
  }
2076
2076
  //Logging
2077
- console.log("SSO in progress");
2077
+ console.log("iam.msal.sso: SSO in progress");
2078
2078
  if (cls) {
2079
2079
  QSUtils.clearKey("cls=1", true, true);
2080
2080
  }
2081
2081
  return this.msalService.ssoSilent(ssoSilentRequest).pipe(map$1(response => {
2082
2082
  QSUtils.clearSSO();
2083
2083
  //Logging
2084
- console.log("SSO have been successfully done");
2084
+ console.log("iam.msal.sso: SSO have been successfully done");
2085
2085
  return response.accessToken;
2086
2086
  }), catchError(error => {
2087
2087
  QSUtils.clearSSO();
2088
2088
  //Logging
2089
- console.log("SSO silent token acquisition fails");
2089
+ console.log("iam.msal.sso: SSO silent token acquisition failed");
2090
2090
  console.error(error);
2091
2091
  if (error instanceof InteractionRequiredAuthError) {
2092
2092
  return this.acquireToken();
@@ -2104,14 +2104,14 @@ class AuthService extends ApiServiceBase {
2104
2104
  return this.msalService.acquireTokenSilent(silentRequest).pipe(map$1(response => {
2105
2105
  return response.accessToken;
2106
2106
  }), catchError(error => {
2107
- console.log("Silent token acquisition fails.");
2107
+ console.log("iam.msal.sso: Silent token acquisition failed.");
2108
2108
  if (error instanceof InteractionRequiredAuthError) {
2109
2109
  return this.acquireToken();
2110
2110
  }
2111
2111
  return of(null);
2112
2112
  }));
2113
2113
  }
2114
- return this.acquireToken();
2114
+ return of(null);
2115
2115
  }
2116
2116
  forceReauthenticate(account) {
2117
2117
  if (MSALUtils.isB2C()) {