Skip to content

Commit

Permalink
Agrega error del stack
Browse files Browse the repository at this point in the history
  • Loading branch information
fsodano committed Aug 5, 2020
1 parent 29ce98f commit 8a1aa9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/club/controller/clubController.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module.exports = class ClubController extends AbstractController {
}
res.redirect('/club');
} catch (e) {
req.session.errors = [e.message];
req.session.errors = [e.message, e.stack];
res.redirect('/club');
}
}
Expand Down

0 comments on commit 8a1aa9a

Please sign in to comment.