diff --git a/CHANGELOG.md b/CHANGELOG.md index bca57eb..877ae5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ 1. [#108](https://github.com/InfluxCommunity/influxdb3-python/pull/108): Better expose access to response headers in `InfluxDBError`. Example `handle_http_error` added. +### Bug Fixes + +1. [#111](https://github.com/InfluxCommunity/influxdb3-python/pull/111): Reduce log level of disposal of batch processor to DEBUG + ## 0.8.0 [2024-08-12] ### Features diff --git a/influxdb_client_3/write_client/client/write_api.py b/influxdb_client_3/write_client/client/write_api.py index 38d22cd..3519161 100644 --- a/influxdb_client_3/write_client/client/write_api.py +++ b/influxdb_client_3/write_client/client/write_api.py @@ -566,7 +566,7 @@ def _on_error(ex): def _on_complete(self): self._disposable.dispose() - logger.info("the batching processor was disposed") + logger.debug("the batching processor was disposed") def __getstate__(self): """Return a dict of attributes that you want to pickle."""