mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-20 02:09:29 +01:00
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.
This commit is contained in:
parent
593d92390b
commit
428702b50d
@ -323,6 +323,12 @@
|
||||
<configuration>
|
||||
<argLine>${surefireArgLine}</argLine> <!-- This is required for code coverage to work. -->
|
||||
<runOrder>alphabetical</runOrder>
|
||||
<systemProperties>
|
||||
<property>
|
||||
<name>java.util.logging.config.file</name>
|
||||
<value>src/test/resources/logging.properties</value>
|
||||
</property>
|
||||
</systemProperties>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
2
core/src/test/resources/logging.properties
Normal file
2
core/src/test/resources/logging.properties
Normal file
@ -0,0 +1,2 @@
|
||||
handlers=java.util.logging.ConsoleHandler
|
||||
org.bitcoinj.level=OFF
|
Loading…
Reference in New Issue
Block a user