We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e295896 commit 5cd241dCopy full SHA for 5cd241d
msal/application.py
@@ -578,8 +578,10 @@ def _acquire_token_silent_by_finding_specific_refresh_token(
578
**kwargs)
579
if "error" not in response:
580
return response
581
- logger.debug(
582
- "Refresh failed. {error}: {error_description}".format(**response))
+ logger.debug("Refresh failed. {error}: {error_description}".format(
+ error=response.get("error"),
583
+ error_description=response.get("error_description"),
584
+ ))
585
if break_condition(response):
586
break
587
0 commit comments