How to use the @axa-fr/react-oidc-core.oidcLog.error function in @axa-fr/react-oidc-core

To help you get started, we’ve selected a few @axa-fr/react-oidc-core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github AxaGuilDEv / react-oidc / packages / redux / src / AuthenticationCallback.js View on Github external
const errorCallback = error => {
    const { message } = error;
    oidcLog.error(`There was an error handling the token callback: ${message}`);
    history.push(`/authentication/not-authenticated?message=${message}`);
  };
github AxaGuilDEv / react-oidc / packages / context / src / Context / OidcEvents.js View on Github external
export const onError = dispatch => error => {
  oidcLog.error(`Error : ${error.message}`);
  dispatch({ type: 'ON_ERROR', message: error.message });
};