We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84ecd5d commit 4ea57a0Copy full SHA for 4ea57a0
tests/integrations/aws_lambda/utils.py
@@ -103,7 +103,6 @@ def __init__(self, port=9999):
103
104
@self.app.post("/api/0/envelope/")
105
async def envelope(request: Request):
106
- print("[SENTRY SERVER] Received envelope")
107
try:
108
raw_body = await request.body()
109
except:
@@ -135,7 +134,7 @@ async def envelope(request: Request):
135
134
return {"status": "ok"}
136
137
def run_server(self):
138
- uvicorn.run(self.app, host="0.0.0.0", port=self.port)
+ uvicorn.run(self.app, host="0.0.0.0", port=self.port, log_level="warning")
139
140
def start(self):
141
print("[SENTRY SERVER] Starting server")
0 commit comments