You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2016/11/07 07:56:32 UTC

[7/9] kylin git commit: minor, add more logging

minor, add more logging


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

Branch: refs/heads/yang21-hbase1.x
Commit: d9bd93c480ed405104a79d8eccb708bf6662a2ce
Parents: f439676
Author: lidongsjtu <li...@apache.org>
Authored: Fri Oct 28 14:07:39 2016 +0800
Committer: lidongsjtu <li...@apache.org>
Committed: Mon Nov 7 11:52:45 2016 +0800

----------------------------------------------------------------------
 .../org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/d9bd93c4/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java
----------------------------------------------------------------------
diff --git a/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java b/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java
index 7dc6afa..b51af59 100644
--- a/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java
+++ b/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java
@@ -106,7 +106,7 @@ public abstract class GTCubeStorageQueryBase implements IStorageQuery {
         dimensionsD.addAll(groupsD);
         dimensionsD.addAll(otherDimsD);
         Cuboid cuboid = Cuboid.identifyCuboid(cubeDesc, dimensionsD, metrics);
-        logger.info("Cuboid identified: cube={}, cuboidId={}", cubeInstance.getName(), cuboid.getId());
+        logger.info("Cuboid identified: cube={}, cuboidId={}, groupsD={}, otherDimsD={}", cubeInstance.getName(), cuboid.getId(), groupsD, otherDimsD);
         context.setCuboid(cuboid);
 
         // isExactAggregation? meaning: tuples returned from storage requires no further aggregation in query engine