Skip to content

Commit

Permalink
request.body access
Browse files Browse the repository at this point in the history
  • Loading branch information
phact committed Aug 21, 2024
1 parent fc5f65f commit 8d9201c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impl/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async def dispatch(self, request: Request, call_next):
response = await call_next(request)
return response
except Exception as e:
logger.error(f"Error: {e} {await request.json()}")
logger.error(f"Error: {e}")
print(e)
raise e

Expand Down

0 comments on commit 8d9201c

Please sign in to comment.