You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/04/13 17:55:49 UTC

[2/2] ignite git commit: debug messages

debug messages


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

Branch: refs/heads/ignite-3477-debug
Commit: 8f63302d33d4cd5190f178c70003919298bf12f5
Parents: f613ef2
Author: Alexey Goncharuk <al...@gmail.com>
Authored: Thu Apr 13 20:55:58 2017 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Thu Apr 13 20:55:58 2017 +0300

----------------------------------------------------------------------
 .../ignite/internal/processors/cache/GridCacheIoManager.java    | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/8f63302d/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheIoManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheIoManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheIoManager.java
index fdd29e4..115bd0a 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheIoManager.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheIoManager.java
@@ -137,6 +137,8 @@ public class GridCacheIoManager extends GridCacheSharedManagerAdapter {
             if (log.isDebugEnabled())
                 log.debug("Received unordered cache communication message [nodeId=" + nodeId +
                     ", locId=" + cctx.localNodeId() + ", msg=" + msg + ']');
+            U.debug(log, "Received unordered cache communication message [nodeId=" + nodeId +
+                ", locId=" + cctx.localNodeId() + ", msg=" + msg + ']');
 
             final GridCacheMessage cacheMsg = (GridCacheMessage)msg;
 
@@ -936,6 +938,7 @@ public class GridCacheIoManager extends GridCacheSharedManagerAdapter {
 
         if (log.isDebugEnabled())
             log.debug("Sending cache message [msg=" + msg + ", node=" + U.toShortString(node) + ']');
+        U.debug(log, "Sending cache message [msg=" + msg + ", node=" + U.toShortString(node) + ']');
 
         int cnt = 0;
 
@@ -991,6 +994,7 @@ public class GridCacheIoManager extends GridCacheSharedManagerAdapter {
 
         if (log.isDebugEnabled())
             log.debug("Sending cache message [msg=" + msg + ", nodes=" + U.toShortString(nodes) + ']');
+        U.debug(log, "Sending cache message [msg=" + msg + ", nodes=" + U.toShortString(nodes) + ']');
 
         final Collection<UUID> leftIds = new GridLeanSet<>();
 
@@ -1166,6 +1170,7 @@ public class GridCacheIoManager extends GridCacheSharedManagerAdapter {
 
             if (log.isDebugEnabled())
                 log.debug("Sent cache message [msg=" + msg + ", node=" + U.toShortString(node) + ']');
+            U.debug(log, "Sent cache message [msg=" + msg + ", node=" + U.toShortString(node) + ']');
         }
         catch (IgniteCheckedException e) {
             if (!cctx.discovery().alive(node.id()))