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 9961e15 commit 6190c8dCopy full SHA for 6190c8d
src/azure-cli-core/azure/cli/core/auth/identity.py
@@ -112,7 +112,9 @@ def _msal_app_kwargs(self):
112
def _msal_public_app_kwargs(self):
113
"""kwargs for creating PublicClientApplication."""
114
# enable_broker_on_windows can only be used on PublicClientApplication.
115
- return {**self._msal_app_kwargs, "enable_broker_on_windows": self._enable_broker_on_windows}
+ return {**self._msal_app_kwargs,
116
+ "enable_broker_on_windows": self._enable_broker_on_windows,
117
+ "enable_pii_log": True}
118
119
@property
120
def _msal_app(self):
0 commit comments