Ignite-1093 Logging fixes.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/2b6fc494 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/2b6fc494 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/2b6fc494 Branch: refs/heads/ignite-843-rc1 Commit: 2b6fc4942f126ed42bb6c89ed20f5a9b4b37f655 Parents: 67f8858 Author: Anton Vinogradov <a...@apache.org> Authored: Tue Nov 10 16:54:48 2015 +0300 Committer: Anton Vinogradov <a...@apache.org> Committed: Tue Nov 10 16:54:48 2015 +0300 ---------------------------------------------------------------------- .../processors/cache/GridCachePartitionExchangeManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/2b6fc494/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java index 5b4fee3..81ff028 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java @@ -1357,7 +1357,7 @@ public class GridCachePartitionExchangeManager<K, V> extends GridCacheSharedMana if (futQ.isEmpty()) { U.log(log, "Rebalancing required" + "[top=" + exchFut.topologyVersion() + ", evt=" + exchFut.discoveryEvent().name() + - ", node=" + exchFut.discoveryEvent().node().id() + ']'); + ", node=" + exchFut.discoveryEvent().eventNode().id() + ']'); if (marshR != null) try { @@ -1402,12 +1402,12 @@ public class GridCachePartitionExchangeManager<K, V> extends GridCacheSharedMana else U.log(log, "Skipping rebalancing (obsolete exchange ID) " + "[top=" + exchFut.topologyVersion() + ", evt=" + exchFut.discoveryEvent().name() + - ", node=" + exchFut.discoveryEvent().node().id() + ']'); + ", node=" + exchFut.discoveryEvent().eventNode().id() + ']'); } else U.log(log, "Skipping rebalancing (nothing scheduled) " + "[top=" + exchFut.topologyVersion() + ", evt=" + exchFut.discoveryEvent().name() + - ", node=" + exchFut.discoveryEvent().node().id() + ']'); + ", node=" + exchFut.discoveryEvent().eventNode().id() + ']'); } } catch (IgniteInterruptedCheckedException e) {