chalice

How to print complete http request using chalice?

How to print complete http request using chalice? Question: I have a small application where I am using chalice to expose some endpoints. For logging purpose I want to print the entire url whenever any handler function is called. @app.route(‘/XYZ’, methods=[‘GET’]) @logging_and_error_handling() def get_XYZ_value(): For example , if the above function gets called, I want …

Total answers: 2