Skip to content

Commit e758fec

Browse files
authored
Remove access logging from Starlette Plus (#72)
1 parent 19e8d89 commit e758fec

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
@@ -35,7 +35,7 @@ def __init__(self, *, bot: Bot) -> None:
3535
self.bot: Bot = bot
3636
self.__auth: str | None = CONFIG["TOKENS"].get("pythonista")
3737

38-
super().__init__()
38+
super().__init__(access_log=False)
3939

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

0 commit comments

Comments
 (0)