Hello! Werkzeug logs urls as encoded strings. For example if I have route with Cyrillic characters: @app.route('/привет') in Flask (https://gist.github.com/dima74/5e025da90ee90a78b65bc3e3c69623ea), then Werkzeug will log GET /%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82 HTTP/1.1. It would be very nice if there is option for Werkzeug to log decoded urls. (Thanks for Werkzeug!)
Hello! Werkzeug logs urls as encoded strings. For example if I have route with Cyrillic characters:
@app.route('/привет')in Flask (https://gist.github.com/dima74/5e025da90ee90a78b65bc3e3c69623ea), then Werkzeug will logGET /%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82 HTTP/1.1. It would be very nice if there is option for Werkzeug to log decoded urls. (Thanks for Werkzeug!)