We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a414c6 commit e59e91bCopy full SHA for e59e91b
src/web-server.js
@@ -62,6 +62,7 @@ function getEnv(req) {
62
}
63
64
function sendError(res, ex, prefix) {
65
+ console.error(ex);
66
const status =
67
ex && ex.message && /No such environment/.test(ex.message) ? 404 : 500;
68
res.status(status).send(`${prefix} -- ${ex.toString()}`);
0 commit comments