Verified Commit 187a872e authored by Peter Stanko's avatar Peter Stanko
Browse files

Removed requests logging

parent 969ab748
Pipeline #17427 passed with stage
in 9 minutes and 48 seconds
......@@ -121,12 +121,6 @@ def create_app(environment: str = None):
configure_extensions(app)
configure_async(app)
rest.register_namespaces(app)
@app.before_request
def __before_request():
from flask import request
body = request.get_data(as_text=True) if request.data else ''
app.logger.debug(f"[{request.method}] {request.url} - {body}")
return app
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment