Repository: kylin
Updated Branches:
  refs/heads/master ef7d29083 -> 83d0ef3c8


minor, downgrade log level to debug for 'Not a valid value' in dictionary


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/83d0ef3c
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/83d0ef3c
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/83d0ef3c

Branch: refs/heads/master
Commit: 83d0ef3c854627d7c09250e0ecc625cf97b79ed4
Parents: ef7d290
Author: Li Yang <liy...@apache.org>
Authored: Sun Oct 8 14:34:24 2017 +0800
Committer: Li Yang <liy...@apache.org>
Committed: Sun Oct 8 14:34:24 2017 +0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/kylin/dict/TrieDictionary.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/83d0ef3c/core-dictionary/src/main/java/org/apache/kylin/dict/TrieDictionary.java
----------------------------------------------------------------------
diff --git 
a/core-dictionary/src/main/java/org/apache/kylin/dict/TrieDictionary.java 
b/core-dictionary/src/main/java/org/apache/kylin/dict/TrieDictionary.java
index 53daeb7..754f451 100644
--- a/core-dictionary/src/main/java/org/apache/kylin/dict/TrieDictionary.java
+++ b/core-dictionary/src/main/java/org/apache/kylin/dict/TrieDictionary.java
@@ -152,7 +152,7 @@ public class TrieDictionary<T> extends CacheDictionary<T> {
         int seq = lookupSeqNoFromValue(headSize, value, offset, offset + len, 
roundingFlag);
         int id = calcIdFromSeqNo(seq);
         if (id < 0)
-            logger.error("Not a valid value: " + 
bytesConvert.convertFromBytes(value, offset, len));
+            logger.debug("Not a valid value: " + 
bytesConvert.convertFromBytes(value, offset, len));
         return id;
     }
 

Reply via email to