Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: change log levels
  • Loading branch information
7eliassen committed Mar 25, 2026
commit 5b471ce7acb756548957f19e0287d6aa33a0b77a
2 changes: 1 addition & 1 deletion src/presentation/http/policies/authRequired.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ export default async function authRequired(context: PolicyContext): Promise<void
return await reply.unauthorized();
}

logger.info(`User authenticated with ID: ${userId}`);
logger.debug('User authenticated');
}
2 changes: 1 addition & 1 deletion src/presentation/http/policies/notePublicOrUserInTeam.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ export default async function notePublicOrUserInTeam(context: PolicyContext): Pr
return await reply.forbidden();
}
}
logger.info('Note access check completed successfully');
logger.debug('Note access check completed successfully');
}
2 changes: 1 addition & 1 deletion src/presentation/http/policies/userCanEdit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ export default async function userCanEdit(context: PolicyContext): Promise<void>
return await reply.forbidden();
}

logger.info('User edit permission check completed successfully');
logger.debug('User edit permission check completed successfully');
}