Skip to content

Commit 29f39d6

Browse files
committed
Should have not overreacted to account-not-found
1 parent 06f2abb commit 29f39d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msal/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ def get_accounts(self, username=None):
758758
accounts = [a for a in accounts
759759
if a["username"].lower() == lowercase_username]
760760
if not accounts:
761-
logger.warning((
761+
logger.debug(( # This would also happen when the cache is empty
762762
"get_accounts(username='{}') finds no account. "
763763
"If tokens were acquired without 'profile' scope, "
764764
"they would contain no username for filtering. "

0 commit comments

Comments
 (0)