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.
This commit is contained in:
Barry 2019-11-04 17:36:33 +00:00 committed by Stefano Franz
parent f7e0ce6f0b
commit 6bf49bc4b7

View File

@ -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;
}