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 2017/04/08 11:55:51 UTC

[09/35] kylin git commit: minor, fix whitespace in logging

minor, fix whitespace in logging


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

Branch: refs/heads/master-hbase0.98
Commit: 9147d3edef5f650a3fce479da7968f39f9c63e84
Parents: 598b32e
Author: lidongsjtu <li...@apache.org>
Authored: Wed Mar 29 19:40:10 2017 +0800
Committer: lidongsjtu <li...@apache.org>
Committed: Wed Mar 29 19:40:10 2017 +0800

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


http://git-wip-us.apache.org/repos/asf/kylin/blob/9147d3ed/server-base/src/main/java/org/apache/kylin/rest/service/CacheService.java
----------------------------------------------------------------------
diff --git a/server-base/src/main/java/org/apache/kylin/rest/service/CacheService.java b/server-base/src/main/java/org/apache/kylin/rest/service/CacheService.java
index af680a5..d3d6237 100644
--- a/server-base/src/main/java/org/apache/kylin/rest/service/CacheService.java
+++ b/server-base/src/main/java/org/apache/kylin/rest/service/CacheService.java
@@ -114,7 +114,7 @@ public class CacheService extends BasicService {
 
     protected void cleanDataCache(String project) {
         if (cacheManager != null) {
-            logger.info("cleaning cache for project" + project + " (currently remove all entries)");
+            logger.info("cleaning cache for project " + project + " (currently remove all entries)");
             cacheManager.getCache(QueryService.SUCCESS_QUERY_CACHE).removeAll();
             cacheManager.getCache(QueryService.EXCEPTION_QUERY_CACHE).removeAll();
         } else {