From 720c08608dac97514128426ef57102e49ffd7fbc Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Sun, 9 Feb 2014 18:49:59 -0600 Subject: [PATCH] fix debug gradle builds to have less bloat in console --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 114b4970..691313d8 100644 --- a/build.gradle +++ b/build.gradle @@ -124,4 +124,10 @@ subprojects { dependencies { testCompile 'junit:junit:4.8.2' } + + test { + testLogging { + exceptionFormat = 'full' + } + } }