Skip to content

Commit e48744e

Browse files
authored
fix: set message 'processor was disposed' to level debug. (#111)
1 parent 9d92767 commit e48744e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
1. [#108](https://github.com/InfluxCommunity/influxdb3-python/pull/108): Better expose access to response headers in `InfluxDBError`. Example `handle_http_error` added.
88

9+
### Bug Fixes
10+
11+
1. [#111](https://github.com/InfluxCommunity/influxdb3-python/pull/111): Reduce log level of disposal of batch processor to DEBUG
12+
913
## 0.8.0 [2024-08-12]
1014

1115
### Features

influxdb_client_3/write_client/client/write_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def _on_error(ex):
566566

567567
def _on_complete(self):
568568
self._disposable.dispose()
569-
logger.info("the batching processor was disposed")
569+
logger.debug("the batching processor was disposed")
570570

571571
def __getstate__(self):
572572
"""Return a dict of attributes that you want to pickle."""

0 commit comments

Comments
 (0)