Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-368 734f820ff -> 9267b90bb


# IGNITE-368 IgniteExceptionRegistrySelfTest: added threadId and threadName.


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

Branch: refs/heads/ignite-368
Commit: 9267b90bb8f8909618cf0918ce9d6a76a7b9f83f
Parents: 734f820
Author: AKuznetsov <akuznet...@gridgain.com>
Authored: Tue Mar 17 11:37:29 2015 +0700
Committer: AKuznetsov <akuznet...@gridgain.com>
Committed: Tue Mar 17 11:37:29 2015 +0700

----------------------------------------------------------------------
 .../ignite/internal/util/IgniteExceptionRegistrySelfTest.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/9267b90b/modules/core/src/test/java/org/apache/ignite/internal/util/IgniteExceptionRegistrySelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/util/IgniteExceptionRegistrySelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/util/IgniteExceptionRegistrySelfTest.java
index 7764c41..5c21dc8 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/util/IgniteExceptionRegistrySelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/util/IgniteExceptionRegistrySelfTest.java
@@ -48,7 +48,9 @@ public class IgniteExceptionRegistrySelfTest extends 
GridCommonAbstractTest {
                 if (!e.message().startsWith("Test ")) {
                     info("----------------------------");
 
-                    info("!!! Found unexpected suppressed exception: msg=" + 
e.message() + ", err=" + e.error());
+                    info("!!! Found unexpected suppressed exception: msg=" + 
e.message() +
+                        ", threadId=" + e.threadId() + ", threadName=" + 
e.threadName() +
+                        ", err=" + e.error());
 
                     StringWriter sw = new StringWriter(1024);
                     e.error().printStackTrace(new PrintWriter(sw));

Reply via email to