Skip to content

Commit

Permalink
Make logging less verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfdn committed Oct 4, 2023
1 parent 86fd8b7 commit 0f8af76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_appbuilder/security/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ def _decode_and_validate_azure_jwt(self, id_token):
)
claims = jwt.decode(id_token, keyset)
claims.validate()
log.info("Decoded JWT:\n%s", json.dumps(claims, indent=4))
log.debug("Decoded JWT:\n%s", json.dumps(claims, indent=4))

return claims

Expand Down

0 comments on commit 0f8af76

Please sign in to comment.