Hi, I'm using 3rd party user password recipe for P...
# support-questions-legacy
i
Hi, I'm using 3rd party user password recipe for Python with Flask, and i'm wrapping routes with @verify_session() decorator. I want to add a middleware that takes the auth user data and adds it to the logger, but didn't find a proper way to do it with Flask middleware or a hook like @app.before_request, since they're called before the @verify_session() decorator. How can I achieve that behavior?