Skip to content

Commit

Permalink
Remove access logging from Starlette Plus
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy authored Dec 17, 2024
1 parent fc313aa commit 3132121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, *, bot: Bot) -> None:
self.bot: Bot = bot
self.__auth: str | None = CONFIG["TOKENS"].get("pythonista")

super().__init__()
super().__init__(access_log=False)

@starlette_plus.route("/dpy/modlog", methods=["POST"], prefix=False, include_in_schema=False)
async def dpy_modlog(self, request: starlette_plus.Request) -> starlette_plus.Response:
Expand Down

0 comments on commit 3132121

Please sign in to comment.