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/ldp Commit: b8bf4f2dc9951c0a8b96fd29c573c27d71a1d40f Parents: 34b70b2 Author: Sebastian Schaffert <[email protected]> Authored: Tue Mar 18 15:17:06 2014 +0100 Committer: Sebastian Schaffert <[email protected]> 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());
