Skip to content

Commit 3132121

Browse files
authored
Remove access logging from Starlette Plus
1 parent fc313aa commit 3132121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/application.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __init__(self, *, bot: Bot) -> None:
3434
self.bot: Bot = bot
3535
self.__auth: str | None = CONFIG["TOKENS"].get("pythonista")
3636

37-
super().__init__()
37+
super().__init__(access_log=False)
3838

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

0 commit comments

Comments
 (0)