initial CHECK snapshot test w/o modifications
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/22b6a9a9 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/22b6a9a9 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/22b6a9a9 Branch: refs/heads/ignite-gg-8.0.3.ea6-clients-test Commit: 22b6a9a954fd9e56fd96ca94d99165f94bf8ec01 Parents: 977653f Author: Alexandr Kuramshin <[email protected]> Authored: Wed Mar 15 19:18:51 2017 +0700 Committer: Alexandr Kuramshin <[email protected]> Committed: Wed Mar 15 19:18:51 2017 +0700 ---------------------------------------------------------------------- modules/core/src/test/config/log4j-test.xml | 8 ++++---- .../testframework/junits/common/GridCommonAbstractTest.java | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/22b6a9a9/modules/core/src/test/config/log4j-test.xml ---------------------------------------------------------------------- diff --git a/modules/core/src/test/config/log4j-test.xml b/modules/core/src/test/config/log4j-test.xml old mode 100644 new mode 100755 index 276de8c..edabff7 --- a/modules/core/src/test/config/log4j-test.xml +++ b/modules/core/src/test/config/log4j-test.xml @@ -102,9 +102,9 @@ </category> --> - <!-- Disable all open source debugging. --> - <category name="org"> - <level value="INFO"/> + <!-- Enable GG database debugging. --> + <category name="org.gridgain.grid.internal.processors.cache.database"> + <level value="DEBUG"/> </category> <category name="org.eclipse.jetty"> @@ -113,7 +113,7 @@ <!-- Default settings. --> <root> - <!-- Print out all debug by default. --> + <!-- Print at info by default. --> <level value="INFO"/> <!-- Append to file and console. --> http://git-wip-us.apache.org/repos/asf/ignite/blob/22b6a9a9/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java b/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java old mode 100644 new mode 100755 index d82f1ea..3391b7c --- a/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java +++ b/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java @@ -1452,8 +1452,8 @@ public abstract class GridCommonAbstractTest extends GridAbstractTest { ok = false; } - if (ok) - info("Deleted OK: " + file.getAbsolutePath() + + if (ok && log().isDebugEnabled()) // too much logging on real data + log().debug("Deleted OK: " + file.getAbsolutePath() + (size >= 0 ? "(" + IgniteUtils.readableSize(size, false) + ")" : "")); return ok;
