no message

This commit is contained in:
2018-03-03 13:07:07 -05:00
parent ab2ada933d
commit d2164121ea
10 changed files with 647 additions and 293 deletions

1
app.js
View File

@@ -22,7 +22,6 @@ app.use('/users', users);
// catch 404 and forward to error handler
app.use(function (req, res, next) {
console.log('[App::use] 404: Not Found', { args: arguments });
var err = new Error('Not Found', { args: arguments });
err.status = 404;
next(err);