We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe6384 commit 85a09faCopy full SHA for 85a09fa
src/routes/account.ts
@@ -10,6 +10,6 @@ accountRouter.get('/', checkToken, (req: Req, res) => {
10
linkedProviders: [],
11
name: req.users.username,
12
};
13
- logger.info('check account info', { account });
+ logger.info('check account info', { account: JSON.stringify(account) });
14
res.send({ account });
15
});
0 commit comments