Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mscolnick committed Feb 6, 2025
1 parent 13a6521 commit f57018a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marimo/_server/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async def handle_error(request: Request, response: Any) -> Any:
if isinstance(response, MarimoHTTPException):
# Log server errors
if not is_client_error(response.status_code):
LOGGER.exception(response)
LOGGER.error(response)
return JSONResponse(
{"detail": response.detail},
status_code=response.status_code,
Expand Down

0 comments on commit f57018a

Please sign in to comment.