On Nov 13, 2014, at 11:32 AM, Reza Razavipour wrote:

> I want to have an application global exception handler. 
> I have added 
> 
> app.use(function(err, req, res, next) {
>     logger.error(err.message);
>     res.status(err.status || 500);
>     res.render('error', {
>         message: err.message,
>         error: {}
>     });
> });
> 
> and in my code, to test this, I throw something like 
> throw new Error('catch me');
> 
> and I never see my middleware catching it.

If you're using express version 4 or later, make sure you app.use your error 
handler *after* you've defined all your normal routes. Other than that, I'm not 
sure; show us your code.

-- 
Job board: http://jobs.nodejs.org/
New group rules: 
https://gist.github.com/othiym23/9886289#file-moderation-policy-md
Old group rules: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/nodejs/FB4DB227-CA7D-4F48-9BB5-FDD545FECBCA%40ryandesign.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to