You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2015/09/24 10:40:47 UTC

ignite git commit: Debug.

Repository: ignite
Updated Branches:
  refs/heads/ignite-1282 ecc60aae0 -> 64e890c0a


Debug.


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

Branch: refs/heads/ignite-1282
Commit: 64e890c0abe44658901c5b5d4f9981caa1e0cf9e
Parents: ecc60aa
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Thu Sep 24 11:41:26 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Thu Sep 24 11:41:26 2015 +0300

----------------------------------------------------------------------
 modules/platforms/cpp/core/src/ignition.cpp | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/64e890c0/modules/platforms/cpp/core/src/ignition.cpp
----------------------------------------------------------------------
diff --git a/modules/platforms/cpp/core/src/ignition.cpp b/modules/platforms/cpp/core/src/ignition.cpp
index a0e3367..d5d414d 100644
--- a/modules/platforms/cpp/core/src/ignition.cpp
+++ b/modules/platforms/cpp/core/src/ignition.cpp
@@ -163,6 +163,8 @@ namespace ignite
 
                 failed = true;
             }
+            else
+                std::cout << "JVM LIB LOC: " << jvmLib << std::endl;
 
             if (!failed) {
                 if (!LoadJvmLibrary(jvmLib))
@@ -191,6 +193,8 @@ namespace ignite
             else
                 home = ResolveIgniteHome(NULL, &homeFound);
 
+            std::cout << "IGNITE_HOME: " << home << std::endl;
+
             // 3. Create classpath.
             std::string cp;
 
@@ -205,6 +209,8 @@ namespace ignite
 
             if (!cp.empty())
             {
+                std::cout << "CLASSPATH: " << cp << std::endl;
+
                 // 4. Start JVM if needed.
                 JniErrorInfo jniErr;