You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by ss...@apache.org on 2014/03/18 15:17:14 UTC

git commit: small bug fix in logging

Repository: marmotta
Updated Branches:
  refs/heads/develop 34b70b23e -> b8bf4f2dc


small bug fix in logging


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

Branch: refs/heads/develop
Commit: b8bf4f2dc9951c0a8b96fd29c573c27d71a1d40f
Parents: 34b70b2
Author: Sebastian Schaffert <ss...@apache.org>
Authored: Tue Mar 18 15:17:06 2014 +0100
Committer: Sebastian Schaffert <ss...@apache.org>
Committed: Tue Mar 18 15:17:06 2014 +0100

----------------------------------------------------------------------
 .../marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/marmotta/blob/b8bf4f2d/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java
----------------------------------------------------------------------
diff --git a/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java b/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java
index db4ee50..cd3a9c5 100644
--- a/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java
+++ b/libraries/kiwi/kiwi-caching-hazelcast/src/main/java/org/apache/marmotta/kiwi/hazelcast/caching/HazelcastCacheManager.java
@@ -80,7 +80,7 @@ public class HazelcastCacheManager implements CacheManager {
 
         hazelcast = Hazelcast.newHazelcastInstance(hcConfiguration);
 
-        if(configuration.isClustered()) {
+        if(!configuration.isClustered()) {
             log.info("initialised Hazelcast local cache manager");
         } else {
             log.info("initialised Hazelcast distributed cache manager (cluster name: {})",  configuration.getClusterName());