This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch change_log_level in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 0b78a3aa974c3fb6dff3400769680fce7dd921e4 Author: HTHou <[email protected]> AuthorDate: Fri Oct 9 11:10:56 2020 +0800 print error log when set illegal sg name --- server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java b/server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java index f15495c..3880eaf 100644 --- a/server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java +++ b/server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl.java @@ -1637,7 +1637,7 @@ public class TSServiceImpl implements TSIService.Iface, ServerContext { } catch (BatchInsertionException e) { return RpcUtils.getStatus(Arrays.asList(e.getFailingStatus())); } catch (QueryProcessException e) { - logger.debug("meet error while processing non-query. ", e); + logger.error("meet error while processing non-query. ", e); return RpcUtils.getStatus(e.getErrorCode(), e.getMessage()); } catch (Exception e) { logger.error("{}: server Internal Error: ", IoTDBConstant.GLOBAL_DB_NAME, e);
