Skip to content

Commit 376f371

Browse files
fix: ping function uses debug for log (#391)
1 parent afee531 commit 376f371

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
1. [#378](https://github.com/influxdata/influxdb-client-python/pull/378): Correct serialization DataFrame with nan values [DataFrame]
66
1. [#384](https://github.com/influxdata/influxdb-client-python/pull/384): Timeout can be specified as a `float`
77
1. [#380](https://github.com/influxdata/influxdb-client-python/pull/380): Correct data types for querying [DataFrame]
8+
1. [#391](https://github.com/influxdata/influxdb-client-python/pull/391): Ping function uses debug for log
89

910
### CI
1011
1. [#370](https://github.com/influxdata/influxdb-client-python/pull/370): Add Python 3.10 to CI builds

influxdb_client/client/influxdb_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def ping(self) -> bool:
429429
ping_service.get_ping()
430430
return True
431431
except Exception as ex:
432-
logger.error("Unexpected error during /ping: %s", ex)
432+
logger.debug("Unexpected error during /ping: %s", ex)
433433
return False
434434

435435
def version(self) -> str:

0 commit comments

Comments
 (0)