Skip to content

Commit

Permalink
Add additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrayner committed Feb 6, 2024
1 parent 9d32bc5 commit 63ea0a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Pod Point Client Changelog

## v1.4.1

* Add additional debug logs for testing new google auth

## v1.4.0

* Update auth system to new Google-based auth from Pod Point
Expand Down
2 changes: 1 addition & 1 deletion podpointclient/helpers/api_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def __wrapper(
try:
async with async_timeout.timeout(self._timeout):
start_time = time.time()
_LOGGER.debug("%s %s %s",method.upper(), url, params)
_LOGGER.debug("%s %s %s %s",method.upper(), url, params, data)

response = None

Expand Down
2 changes: 1 addition & 1 deletion podpointclient/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version for the podpointclient library"""

__version__ = "1.4.0"
__version__ = "1.4.1-b1"

0 comments on commit 63ea0a7

Please sign in to comment.