From 428702b50d301760e7705f923abc2bacdb0e183e 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 edb078fb..fe9ccec3 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -323,6 +323,12 @@ ${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