Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 1.51.0 [unreleased]

### Bug Fixes

1. [#706](https://github.com/influxdata/influxdb-client-python/pull/706): Use logger instead logging.

## 1.50.0 [2026-01-23]

### Features
Expand Down
2 changes: 1 addition & 1 deletion influxdb_client/client/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def _get_message(self, response):
try:
return json.loads(response.data)["message"]
except Exception as e:
logging.debug(f"Cannot parse error response to JSON: {response.data}, {e}")
logger.debug(f"Cannot parse error response to JSON: {response.data}, {e}")
return response.data

# Header
Expand Down
Loading