Skip to content

Commit 5be66cf

Browse files
committed
chore: remove debug console log from AuthController
- Commented out the console log statement in the AuthController to clean up the output during role retrieval.
1 parent 60e7152 commit 5be66cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/api/src/core/auth/auth.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class AuthController extends AbstractController {
4444
this.logger.debug(`Session data delivered for ${identity._id} (${identity.email}) with ${JSON.stringify(user)}`);
4545

4646
const ac = await this.rolesService.getRolesBuilder()
47-
console.log('ac.getGrants()', ac.getGrants())
47+
// console.log('ac.getGrants()', ac.getGrants())
4848

4949
return res.status(HttpStatus.OK).json({
5050
user: {

0 commit comments

Comments
 (0)