Repository: ignite
Updated Branches:
  refs/heads/ignite-3212 a05b55a4e -> 0e729dea8


ignite-3212 Dump debug info on exchange timeout


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

Branch: refs/heads/ignite-3212
Commit: 0e729dea8957a0e2095b05abee8fb6c87c20c55f
Parents: a05b55a
Author: sboikov <[email protected]>
Authored: Wed Jun 1 12:11:02 2016 +0300
Committer: sboikov <[email protected]>
Committed: Wed Jun 1 12:11:02 2016 +0300

----------------------------------------------------------------------
 .../dht/preloader/GridDhtPartitionsExchangeFuture.java           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/0e729dea/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java
 
b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java
index 5e81c22..c433108 100644
--- 
a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java
+++ 
b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java
@@ -1088,8 +1088,8 @@ public class GridDhtPartitionsExchangeFuture extends 
GridFutureAdapter<AffinityT
         cctx.cache().onExchangeDone(exchId.topologyVersion(), reqs, err);
 
         if (super.onDone(res, err) && realExchange) {
-            if (log.isDebugEnabled())
-                log.debug("Completed partition exchange [localNode=" + 
cctx.localNodeId() + ", exchange= " + this +
+            if (log.isInfoEnabled())
+                log.info("Completed partition exchange [localNode=" + 
cctx.localNodeId() + ", exchange= " + this +
                     "duration=" + duration() + ", durationFromInit=" + 
(U.currentTimeMillis() - initTs) + ']');
 
             initFut.onDone(err == null);

Reply via email to