if I have 
    
    @app.errorhandler(Exception)
    def all_exception_handler(error):
        app.logger.error(error)
        return 'Error', 500

then https://github.com/pallets/flask/blob/master/flask/app.py#L1515 will 
invoke my handler with only exc_value.
So if I want line numbers or traceback I have to let reraise get called?

-- 
You received this message because you are subscribed to the Google Groups 
"pocoo-libs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pocoo-libs+unsubscr...@googlegroups.com.
To post to this group, send email to pocoo-libs@googlegroups.com.
Visit this group at https://groups.google.com/group/pocoo-libs.
For more options, visit https://groups.google.com/d/optout.

Reply via email to