Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
calebtuttle committed Apr 19, 2024
1 parent 1f2c041 commit 9aa4d59
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/services/sessions/endpoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,10 @@ async function createIdvSession(req, res) {

return handleIdvSessionCreation(res, session, createIdvSessionLogger);
} catch (err) {
createIdvSessionLogger.error(
{ errorMsg: err.message },
"Error creating IDV session"
);
if (err.response) {
createIdvSessionLogger.error(
{ error: err.response.data },
Expand Down

0 comments on commit 9aa4d59

Please sign in to comment.