Skip to content

Commit

Permalink
Fix test failure in case search #2670
Browse files Browse the repository at this point in the history
  • Loading branch information
iamleeg committed May 5, 2022
1 parent fa025ce commit 3e59b7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data-serving/data-service/src/controllers/case.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,8 @@ export class CasesController {
res.status(422).json({ message: e.message });
return;
}
logger.error(`non-parsing error for query ${req.query}`);
logger.error(`non-parsing error for query:`);
logger.error(req.query);
logger.error(e);
res.status(500).json(e);
return;
Expand Down

0 comments on commit 3e59b7f

Please sign in to comment.