From 507751aaccc47f6b60e8b08f8fd9ab7a7d5c3344 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Mon, 25 Jan 2016 22:18:09 +0100 Subject: [PATCH] Don't print log to console if tests are run by Maven. It got too large for Travis. If you need the log, you can run the failing test locally, e.g. in your IDE. --- core/pom.xml | 6 ++++++ core/src/test/resources/logging.properties | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 core/src/test/resources/logging.properties diff --git a/core/pom.xml b/core/pom.xml index 698988d9..fe3567e6 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -323,6 +323,12 @@ -Xmx1024m ${surefireArgLine} alphabetical + + + java.util.logging.config.file + src/test/resources/logging.properties + + diff --git a/core/src/test/resources/logging.properties b/core/src/test/resources/logging.properties new file mode 100644 index 00000000..0aa499fa --- /dev/null +++ b/core/src/test/resources/logging.properties @@ -0,0 +1,2 @@ +handlers=java.util.logging.ConsoleHandler +org.bitcoinj.level=OFF \ No newline at end of file