Skip to content

Commit

Permalink
PROD-1480: Update logging level for 'Retrieved FidesUserPermission re…
Browse files Browse the repository at this point in the history
…cord for current user' message to Debug (#4482)
  • Loading branch information
RobertKeyser authored Dec 5, 2023
1 parent c94a3ea commit c7218f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ The types of changes are:
### Changed
- Increased max number of preferences allowed in privacy preference API calls [#4469](https://github.com/ethyca/fides/pull/4469)

### Changed
- Change log level for FidesUserPermission retrieval to `debug` [#4482](https://github.com/ethyca/fides/pull/4482)

### Fixed
- Fix type errors when TCF vendors have no dataDeclaration [#4465](https://github.com/ethyca/fides/pull/4465)
- Fixed an error where editing an AC system would mistakenly lock it for GVL [#4471](https://github.com/ethyca/fides/pull/4471)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async def get_user_permissions(
roles=CONFIG.security.root_user_roles,
)

logger.info("Retrieved FidesUserPermission record for current user")
logger.debug("Retrieved FidesUserPermission record for current user")
return FidesUserPermissions.get_by(db, field="user_id", value=current_user.id)

# To look up the permissions of another user, that user must exist and the current user must
Expand Down

0 comments on commit c7218f0

Please sign in to comment.