You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/01/10 12:01:58 UTC

[iotdb] branch rel/0.12 updated: [To rel/0.12][IOTDB-2334] Unreasonable debug log level of python client Session (#4752)

This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch rel/0.12
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/0.12 by this push:
     new 3660af8  [To rel/0.12][IOTDB-2334] Unreasonable debug log level of python client Session (#4752)
3660af8 is described below

commit 3660af8cd311d5e3b1eb701a1fcada400c63c214
Author: Alan Choo <43...@users.noreply.github.com>
AuthorDate: Mon Jan 10 20:00:46 2022 +0800

    [To rel/0.12][IOTDB-2334] Unreasonable debug log level of python client Session (#4752)
---
 client-py/iotdb/Session.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client-py/iotdb/Session.py b/client-py/iotdb/Session.py
index 5a44312..4e8a68a 100644
--- a/client-py/iotdb/Session.py
+++ b/client-py/iotdb/Session.py
@@ -753,5 +753,5 @@ class Session(object):
         if status.code == Session.SUCCESS_CODE:
             return 0
 
-        logger.debug("error status is", status)
+        logger.error("error status is", status)
         return -1