Skip to content

Commit

Permalink
refactor: simplify logging
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Dec 31, 2024
1 parent 7c6026b commit 85de3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valorant/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def request(self, route: Route, **kwargs: Any) -> Any:
data: dict[str, Any] | str | None = None

async with self.__session.request(method, url, **kwargs) as response: # noqa: F811
_log.debug('%s %s with %s has returned %s', method, url, kwargs.get('data'), response.status)
_log.debug('%s %s with returned %s', method, url, response.status)

data = await response.json()

Expand Down

0 comments on commit 85de3e9

Please sign in to comment.