Skip to content

Commit 85a09fa

Browse files
committed
fix: log stringified account info
1 parent 3fe6384 commit 85a09fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/account.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ accountRouter.get('/', checkToken, (req: Req, res) => {
1010
linkedProviders: [],
1111
name: req.users.username,
1212
};
13-
logger.info('check account info', { account });
13+
logger.info('check account info', { account: JSON.stringify(account) });
1414
res.send({ account });
1515
});

0 commit comments

Comments
 (0)