From 6bf49bc4b734f3d8a1349fab142b999aabf17cc6 Mon Sep 17 00:00:00 2001 From: Barry Date: Mon, 4 Nov 2019 17:36:33 +0000 Subject: [PATCH] TM-81 Do not write out the callstack when we cannot find tests.csv (#5669) The first run of any new branch will not find a corresponding tests.csv and will return 404 not found which is fine. We do not need to display the callstack at warning level. --- buildSrc/src/main/groovy/net/corda/testing/Artifactory.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildSrc/src/main/groovy/net/corda/testing/Artifactory.java b/buildSrc/src/main/groovy/net/corda/testing/Artifactory.java index 4213e4ac1c..63e44aea55 100644 --- a/buildSrc/src/main/groovy/net/corda/testing/Artifactory.java +++ b/buildSrc/src/main/groovy/net/corda/testing/Artifactory.java @@ -82,7 +82,8 @@ public class Artifactory { LOG.warn("Response body was empty"); } } catch (IOException e) { - LOG.warn("Unable to execute GET via REST: ", e); + LOG.warn("Unable to execute GET via REST"); + LOG.debug("Exception", e); return false; }