This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new ba1ec68 print error log when set illegal sg name (#1810)
ba1ec68 is described below
commit ba1ec682eae82aeca32ad8f37ba95c518eab14b2
Author: Haonan <[email protected]>
AuthorDate: Fri Oct 9 22:08:43 2020 +0800
print error log when set illegal sg name (#1810)
---
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);