1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Internet_Security/routes/error.js

6 lines
137 B
JavaScript
Raw Normal View History

2020-05-11 10:51:30 +02:00
module.exports = (err, req, res, next) => {
console.error(err.stack);
res.status(500);
res.render("error", {session: req.session});
}